We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8676029 commit 22f393aCopy full SHA for 22f393a
1 file changed
Makefile
@@ -30,13 +30,13 @@ build:
30
upload:
31
uv publish
32
33
-tests:
+tests: install
34
uv run coverage run --rcfile=.coveragerc -m pytest --verbose --showlocals --disable-warnings \
35
tests/ && \
36
uv run coverage report --precision=3 --sort=cover --skip-empty --show-missing && \
37
uv run coverage html --precision=3 --skip-empty -d coverage/html/ && \
38
uv run coverage xml -o coverage/coverage.xml
39
40
-doc:
+doc: install
41
cd docs/ && \
42
- uv run make html -e
+ uv run --group docs make html -e
0 commit comments