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 e265659 commit 33f37c7Copy full SHA for 33f37c7
.github/workflows/pytest-cov.yml
@@ -35,9 +35,9 @@ jobs:
35
- name: Install dependencies and library
36
run: poetry install
37
- name: Run tests with coverage
38
- run: poetry run pytest --cov=${{ matrix.lib }} --cov-report=term --cov-report=xml
+ run: poetry run pytest --cov=${{ matrix.lib }} --cov-report=term --cov-report=xml:../coverage-${{ matrix.lib }}.xml
39
- name: Upload coverage to Codecov
40
uses: codecov/codecov-action@v5
41
with:
42
token: ${{ secrets.CODECOV_TOKEN }}
43
- files: ./*/coverage.xml
+ files: ./coverage-*.xml
0 commit comments