Run lcov with proper --exclude flags to eliminate unwanted coverage data generation
All checks were successful
Chaos Ci / test-and-benchmark (push) Successful in 2m30s

This commit is contained in:
hashlag
2026-01-28 22:59:55 +03:00
parent 15bb663281
commit 612b11b02f

View File

@@ -37,7 +37,7 @@ jobs:
- name: Process coverage data
run: |
lcov --ignore-errors inconsistent,mismatch -c -d build-debug/ -o lcovout
lcov --ignore-errors inconsistent,mismatch --exclude '*/usr/*' --exclude '*/_deps/*' --exclude '*/ChaosTests/*' -c -d build-debug/ -o lcovout
genhtml lcovout -o coverage-report
- name: Upload coverage report