We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeed93b commit 3cff5c7Copy full SHA for 3cff5c7
1 file changed
.github/workflows/codecov.yml
@@ -32,10 +32,13 @@ jobs:
32
pip install ".[optional]"
33
- name: Install test requirements
34
run: |
35
- pip install pytest pytest-cov
+ pip install pytest coverage
36
- name: Run tests
37
38
- pytest --cov --cov-branch --cov-report=xml
+ coverage run -m pytest
39
+ - name: Create coverage report
40
+ run: |
41
+ coverage xml
42
- name: Upload coverage reports to Codecov
43
uses: codecov/codecov-action@v5
44
with:
0 commit comments