From f1b0f680004ce5b46d347ac6a51610d2168816de Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Thu, 28 Sep 2023 07:20:09 +0200 Subject: [PATCH] do not report "self coverage" --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5f4b0ba45..0a2439020 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -94,7 +94,7 @@ unittest_GNU_DEBUG: - cmake --build ${TMPDIR} --target install - cd ${TMPDIR} - ./bin/DAMASK_test - - find -name \*.gcda | xargs gcov + - find -name \*.gcda -not -path "**/test/*" | xargs gcov unittest_GNU_RELEASE: stage: compile @@ -105,7 +105,7 @@ unittest_GNU_RELEASE: - cmake --build ${TMPDIR} --target install - cd ${TMPDIR} - ./bin/DAMASK_test - - find -name \*.gcda | xargs gcov + - find -name \*.gcda -not -path "**/test/*" | xargs gcov unittest_GNU_PERFORMANCE: stage: compile @@ -116,7 +116,7 @@ unittest_GNU_PERFORMANCE: - cmake --build ${TMPDIR} --target install - cd ${TMPDIR} - ./bin/DAMASK_test - - find -name \*.gcda | xargs gcov + - find -name \*.gcda -not -path "**/test/*" | xargs gcov grid_GNU: