From 2d44f36d2e39396683705ffd24f3d1d4c0586da3 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Thu, 23 Feb 2023 13:23:47 +0100 Subject: [PATCH] Remove 3rd party modules from coverage report. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6acacb0e..f8a2f430 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,7 +41,7 @@ coverage: - find coverage -size 0 -type f -delete - ls coverage/ -lah - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - - lcov --remove coverage/final.out '*/systemc*/include/*' '*/traceAnalyzer/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out + - lcov --remove coverage/final.out 'build/_deps/*' 'lib/*' '/usr/local/*' -o coverage/final_dramsys.out - lcov --list coverage/final_dramsys.out include: