From 447ebe16afd3b013f186409811512261356e1374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 2 Aug 2024 08:58:19 +0200 Subject: [PATCH] ci/coverage: Remove coverage from all subprojects --- .gitlab-ci/coverage-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/coverage-docker.sh b/.gitlab-ci/coverage-docker.sh index 53a14a283..a180ebf08 100755 --- a/.gitlab-ci/coverage-docker.sh +++ b/.gitlab-ci/coverage-docker.sh @@ -13,7 +13,7 @@ for path in _coverage/*.lcov; do # Remove coverage from the fuzz tests, since they are run on a separate CI system lcov --config-file .lcovrc -r "${path}" "*/fuzzing/*" -o "$(pwd)/${path}" # Remove coverage from copylibs and subprojects - for lib in xdgmime libcharset gnulib; do + for lib in xdgmime libcharset gnulib subprojects; do lcov --config-file .lcovrc -r "${path}" "*/${lib}/*" -o "$(pwd)/${path}" done