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 2bd13ae commit e3943aaCopy full SHA for e3943aa
.github/workflows/main.yml
@@ -39,9 +39,12 @@ jobs:
39
run: |
40
python -m pip install tox
41
- name: Run tests
42
- run: tox -- --cov-report xml
+ run: tox
43
+ - name: Create coverage report
44
+ if: hashFiles('.coverage') != '' # Rudimentary `file.exists()`
45
+ run: pipx run coverage xml --ignore-errors
46
- name: Publish coverage
- if: false # disabled for #2727
47
+ if: hashFiles('coverage.xml') != '' # Rudimentary `file.exists()`
48
uses: codecov/codecov-action@v1
49
with:
50
flags: >- # Mark which lines are covered by which envs
0 commit comments