We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85f753f commit b91f4bbCopy full SHA for b91f4bb
2 files changed
Makefile
@@ -18,13 +18,13 @@ help: Makefile
18
## upgrade : Update pre-commit configuration.
19
.PHONY: upgrade
20
upgrade: sync
21
- uv run pre-commit autoupdate
+ uvx pre-commit autoupdate
22
23
24
## check : Execute pre-commit hooks.
25
.PHONY: check
26
check: sync
27
- uv run pre-commit run --all-files
+ uvx pre-commit run --all-files
28
29
30
## format : Format code.
@@ -36,7 +36,7 @@ format: sync
36
## test : Execute tests.
37
.PHONY: test
38
test: sync
39
- uv run pytest -q
+ uv run --group tests pytest -q
40
41
42
## version : Show which version is detected
0 commit comments