We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef57443 commit 220dc23Copy full SHA for 220dc23
Justfile
@@ -2,6 +2,11 @@ test: mypy _check && check-format
2
# Testing project
3
@just _test
4
5
+# Run test just on the current python version
6
+test-single:
7
+ # Test on current python version
8
+ uv run pytest
9
+
10
check: mypy _check && check-format
11
12
# runs additional checks
@@ -19,9 +24,7 @@ mypy:
19
24
uv run mypy src
20
25
21
26
# runs tests without anything else
22
-_test:
23
- # Test on current python version
- uv run pytest
27
+_test: test-single
28
@just _test_ver 3.13
29
@just _test_ver 3.12
30
@just _test_ver 3.11
0 commit comments