File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 11# See https://just.systems/man/en/ for instructions
22set shell := [" bash" , " -c" ]
3+ # Do not modify the lock file when running justfile commands.
4+ export UV_FROZEN := " 1"
35
46# Commonly used command segments.
5- uv_run := " uv run --frozen "
6- typing_run := uv_run + " --group typing --extra aws --extra encryption --extra ocsp --extra snappy --extra test --extra zstd"
7- docs_run := uv_run + " --extra docs"
7+ typing_run := " uv run --group typing --extra aws --extra encryption --extra ocsp --extra snappy --extra test --extra zstd"
8+ docs_run := " uv run --extra docs"
89doc_build := " ./doc/_build"
910mypy_args := " --install-types --non-interactive"
1011
@@ -50,15 +51,15 @@ typing-pyright: && resync
5051
5152[group (' lint' )]
5253lint : && resync
53- {{ uv_run }} pre-commit run --all-files
54+ uv run pre-commit run --all-files
5455
5556[group (' lint' )]
5657lint-manual : && resync
57- {{ uv_run }} pre-commit run --all-files --hook-stage manual
58+ uv run pre-commit run --all-files --hook-stage manual
5859
5960[group (' test' )]
6061test * args = " -v --durations=5 --maxfail=10": && resync
61- {{ uv_run }} --extra test pytest {{ args}}
62+ uv run --extra test pytest {{ args}}
6263
6364[group (' test' )]
6465run-tests * args : && resync
You can’t perform that action at this time.
0 commit comments