File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ defaults:
1717jobs :
1818
1919 lint :
20- name : pre-commit
20+ name : lint
2121 runs-on : ubuntu-latest
2222
2323 steps :
Original file line number Diff line number Diff line change @@ -27,17 +27,18 @@ test *args:
2727 uv run pytest {{ args}}
2828
2929lint :
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
3334docs :
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
3738docs-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
4142docs-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}}
You can’t perform that action at this time.
0 commit comments