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 9c7159f commit 96ed302Copy full SHA for 96ed302
1 file changed
.github/workflows/test.yml
@@ -47,19 +47,21 @@ jobs:
47
- name: Install uv
48
uses: astral-sh/setup-uv@v7
49
with:
50
- activate-environment: "true"
51
enable-cache: "false"
52
53
- name: Install dependencies
54
run: |
55
uv sync --group test
56
- uv pip install -e .
57
58
- - name: Run tests
+ - name: Git info
59
60
git version
61
git tag -l --sort=-creatordate --merged
+
+ - name: Run tests
62
+ run: |
63
mkdir reports/
64
+ source .venv/bin/activate
65
coverage run -m pytest -n auto -m ${{ matrix.mark }}
66
67
- name: Upload coverage results
0 commit comments