From 9a764c06dbf614c90fa8df017b846dafc7d8aa88 Mon Sep 17 00:00:00 2001 From: hashlag Date: Wed, 28 Jan 2026 22:45:09 +0300 Subject: [PATCH] Run lcov with --no-external flag set --- .gitea/workflows/ChaosCi.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ChaosCi.yaml b/.gitea/workflows/ChaosCi.yaml index 7dbafdc..ffc2e1a 100644 --- a/.gitea/workflows/ChaosCi.yaml +++ b/.gitea/workflows/ChaosCi.yaml @@ -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 --no-external -c -d build-debug/ -o lcovout genhtml lcovout -o coverage-report - name: Upload coverage report