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 5cfb206 commit 7478a04Copy full SHA for 7478a04
.codecov.yml
@@ -0,0 +1,4 @@
1
+coverage:
2
+ status:
3
+ project: off
4
+ patch: off
.github/workflows/test_and_release.yml
@@ -60,7 +60,14 @@ jobs:
60
run: |
61
pip install .
62
pip install -r tests/requirements.txt
63
- pytest -s ./tests
+ # Run the tests with coverage so we get a coverage report too
64
+ pip install coverage
65
+ coverage run --source . -m pytest .
66
+ # Print the coverage report
67
+ coverage report -m
68
+
69
+ - name: Upload Coverage to Codecov
70
+ uses: codecov/codecov-action@v3
71
72
test-npm-build:
73
runs-on: ubuntu-latest
0 commit comments