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 4e00734 commit 3604ab5Copy full SHA for 3604ab5
.github/workflows/ci.yml
@@ -51,7 +51,8 @@ jobs:
51
- name: test
52
run: make config=gcov test
53
- name: generate coverage report
54
- run: pipx run gcovr --gcov-ignore-parse-errors --exclude-throw-branches --filter src/ --cobertura > cobertura.xml
+ # due to some bug in gcov, we need to use --gcov-ignore-parse-errors=negative_hits.warn
55
+ run: pipx run gcovr --gcov-ignore-parse-errors=negative_hits.warn --exclude-throw-branches --filter src/ --cobertura > cobertura.xml
56
- name: upload coverage report to artifacts
57
uses: actions/upload-artifact@v4
58
with:
0 commit comments