We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd27c0e commit 29067a4Copy full SHA for 29067a4
.github/workflows/ci.yml
@@ -38,7 +38,7 @@ jobs:
38
python-version: ${{ matrix.python-version }}
39
- uses: extractions/setup-just@v2
40
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
41
- - run: just install tests . --cov=. --cov-report xml
+ - run: just install test . --cov=. --cov-report xml
42
- name: Upload coverage to Codecov
43
uses: codecov/[email protected]
44
env:
Justfile
@@ -1,4 +1,4 @@
1
-default: install lint tests
+default: install lint test
2
3
install:
4
uv lock --upgrade
@@ -14,7 +14,7 @@ lint-ci:
14
uv run ruff check . --no-fix
15
uv run mypy .
16
17
-tests *args:
+test *args:
18
uv run pytest {{ args }}
19
20
publish:
0 commit comments