Compare commits

..

2 Commits

Author SHA1 Message Date
hashlag
612b11b02f 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
2026-01-28 22:59:55 +03:00
hashlag
15bb663281 Revert "Run lcov with --no-external flag set"
Library headers are considered externals in this case.

This reverts commit 9a764c06db.
2026-01-28 22:51:38 +03:00

View File

@@ -37,7 +37,7 @@ jobs:
- name: Process coverage data - name: Process coverage data
run: | run: |
lcov --ignore-errors inconsistent,mismatch --no-external -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 genhtml lcovout -o coverage-report
- name: Upload coverage report - name: Upload coverage report