6 python3 .
/.gitlab-ci
/fixup-cov-paths.py _coverage
/*.lcov
8 for path
in _coverage
/*.lcov
; do
9 # Remove coverage from generated code in the build directory
10 lcov
--rc lcov_branch_coverage
=1 -r "${path}" '*/_build/*' -o "$(pwd)/${path}"
11 # Remove any coverage from system files
12 lcov
--rc lcov_branch_coverage
=1 -e "${path}" "$(pwd)/*" -o "$(pwd)/${path}"
16 --ignore-errors=source \
17 --rc lcov_branch_coverage
=1 \
28 <li><a href="coverage/index.html">Coverage</a></li>