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 a564cb7 commit 1d379d4Copy full SHA for 1d379d4
.github/workflows/python-package.yml
@@ -44,7 +44,16 @@ jobs:
44
45
- name: Run tests
46
run: |
47
- make quick_test
48
- make test_coverage
+ python -m pytest src
+ if [ "${{ matrix.python-version }}" == "3.13" ]; then # workaround for TheKevJames/coveralls-python#523
49
+ python -m pytest --no-cov src
50
+ else
51
52
+ coverage erase
53
+ pytest --cov=src/pyff
54
+ mv .coverage .coverage.1
55
+ coverage combine
56
+ fi
57
+
58
#make typecheck
59
0 commit comments