We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dd252b commit 8f95509Copy full SHA for 8f95509
.github/workflows/python-package.yml
@@ -45,13 +45,13 @@ jobs:
45
- name: Run tests
46
run: |
47
if [ "${{ matrix.python-version }}" == "3.13" ]; then # workaround for TheKevJames/coveralls-python#523
48
- python -m pytest --no-cov src
+ python -m coverage run -m pytest --no-cov src
49
else
50
+ python -m coverage erase
51
python -m pytest src
- coverage erase
52
- pytest --cov=src/pyff
+ python -m coverage run -m pytest --cov=src/pyff
53
mv .coverage .coverage.1
54
- coverage combine
+ python -m coverage combine
55
fi
56
57
#make typecheck
0 commit comments