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 10883f7 commit 36bb157Copy full SHA for 36bb157
.github/workflows/coverage.yml
@@ -172,7 +172,8 @@ jobs:
172
173
- name: Combine Coverage Reports
174
run: |
175
- lcov -a coverage/cpp.info -a coverage/lcov.info -o coverage/coverage_final.info --ignore-errors ${IGNORE_ERRORS}
+ lcov -r coverage/lcov.info "*/pybind11/*" -o coverage/python.info --ignore-errors ${IGNORE_ERRORS}
176
+ lcov -a coverage/cpp.info -a coverage/python.info -o coverage/coverage_final.info --ignore-errors ${IGNORE_ERRORS}
177
lcov --list coverage/coverage_final.info
178
179
- name: Upload Combined Coverage to Codecov
0 commit comments