Skip to content

Commit f08861c

Browse files
committed
Fix tests
1 parent 74dd6e7 commit f08861c

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,19 @@ jobs:
4747
- name: Install uv
4848
uses: astral-sh/setup-uv@v7
4949
with:
50+
activate-environment: "true"
5051
enable-cache: "false"
5152

53+
- name: Install dependencies
54+
run: |
55+
uv sync --group test
56+
5257
- name: Run tests
5358
run: |
5459
git version
5560
git tag -l --sort=-creatordate --merged
5661
mkdir reports/
57-
uv run --group test coverage run -m pytest -m ${{ matrix.mark }}
62+
coverage run -m pytest -m ${{ matrix.mark }}
5863
5964
- name: Upload coverage results
6065
uses: actions/upload-artifact@v6

0 commit comments

Comments
 (0)