We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aedd3cf commit 412b0a6Copy full SHA for 412b0a6
1 file changed
template/Justfile
@@ -21,10 +21,7 @@ fix:
21
22
# run tests across all supported Python versions
23
test: _require-hatch
24
- hatch run -m test:test
25
-
26
-# run all quality checks
27
-check: format lint test
+ hatch run test:test
28
29
# build the package
30
build: _require-uv
@@ -45,9 +42,18 @@ clean:
45
42
rm -rf .venv .pytest_cache .mypy_cache .ruff_cache
46
43
find . -type d -name "__pycache__" -exec rm -r {} +
47
44
+# static type check with mypy
+typecheck: _require-uv
+ uv run mypy
48
+
49
+# run all quality checks
50
+check: format lint coverage typecheck
51
52
# list available recipes
53
help:
54
just --list
55
56
alias fmt := format
57
alias cov := coverage
58
+alias mypy := typecheck
59
+alias type := typecheck
0 commit comments