Skip to content

Commit a76cbb5

Browse files
Make sure to run with uv's env
1 parent 079ede5 commit a76cbb5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
- name: Run tests
4545
run: |
4646
if [ "${{ matrix.python-version }}" == "3.13" ]; then # workaround for TheKevJames/coveralls-python#523
47-
python -m coverage run -m pytest --no-cov src
47+
uv run python -m coverage run -m pytest --no-cov src
4848
else
49-
python -m coverage erase
50-
python -m coverage run -m pytest --cov=src/pyff
49+
uv run python -m coverage erase
50+
uv run python -m coverage run -m pytest --cov=src/pyff
5151
mv .coverage .coverage.1
52-
python -m coverage combine
52+
uv run python -m coverage combine
5353
fi
5454
5555
#make typecheck

0 commit comments

Comments
 (0)