We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8b6c7a + 48b0ed8 commit 777a8e9Copy full SHA for 777a8e9
2 files changed
.github/workflows/unit_tests.yml
@@ -25,8 +25,10 @@ jobs:
25
environment-name: py3_parcels
26
- name: Unit test
27
run: |
28
- python -m pytest -v -s tests
+ coverage run -m pytest -v -s tests
29
+ coverage xml
30
- name: Upload coverage reports to Codecov
31
uses: codecov/codecov-action@v4.0.1
32
with:
33
+ flags: unit-tests
34
token: ${{ secrets.CODECOV_TOKEN }}
environment.yml
@@ -8,3 +8,4 @@ dependencies:
8
9
# Testing
10
- pytest
11
+ - coverage
0 commit comments