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 e57ebd2 commit dedd3a9Copy full SHA for dedd3a9
2 files changed
.github/workflows/test.yaml
@@ -129,6 +129,7 @@ jobs:
129
name: html-report
130
path: .tox/htmlcov
131
- name: Upload coverage to Codecov
132
+ if: success() || failure()
133
uses: codecov/codecov-action@v5
134
with:
135
flags: unittests
tox.ini
@@ -87,10 +87,10 @@ set_env =
87
COVERAGE_FILE = {work_dir}/.coverage
88
commands =
89
coverage combine
90
- coverage report --fail-under=100 --skip-covered --show-missing
91
coverage xml -o {work_dir}/coverage.xml
92
coverage html -d {work_dir}/htmlcov
93
diff-cover --compare-branch {env:DIFF_AGAINST:origin/main} {work_dir}/coverage.xml
+ coverage report --fail-under=100 --skip-covered --show-missing
94
depends =
95
py314-parallel
96
py313-parallel
0 commit comments