Skip to content

Commit c91fd17

Browse files
committed
cleanup
1 parent e81bfd1 commit c91fd17

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ defaults:
1717
jobs:
1818

1919
lint:
20-
name: pre-commit
20+
name: lint
2121
runs-on: ubuntu-latest
2222

2323
steps:

bindings/python/justfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,18 @@ test *args:
2727
uv run pytest {{args}}
2828

2929
lint:
30-
uv run pre-commit run --hook-stage manual --all-files
31-
uv run check-manifest -v
30+
uv sync --no-install-project --dev
31+
uv run --no-build pre-commit run --hook-stage manual --all-files
32+
uv run --no-build check-manifest -v
3233

3334
docs:
3435
uv sync --no-install-project --group docs
35-
uv run sphinx-build -T -b html {{sphinx_opts}} {{docs_build}}/html
36+
uv run --no-build sphinx-build -T -b html {{sphinx_opts}} {{docs_build}}/html
3637

3738
docs-serve:
3839
uv sync --no-install-project --group docs --group dev
39-
sphinx-autobuild --watch ./pymongoarrow docs {{docs_build}}/html
40+
urn run --no-build sphinx-autobuild --watch ./pymongoarrow docs {{docs_build}}/html
4041

4142
docs-linkcheck *args:
4243
uv sync --no-install-project --group docs
43-
PYTHONHASHSEED=0 uv run python -m sphinx -q -b linkcheck docs {{docs_build}}/linkcheck {{args}}
44+
PYTHONHASHSEED=0 uv run --no-build python -m sphinx -q -b linkcheck docs {{docs_build}}/linkcheck {{args}}

0 commit comments

Comments
 (0)