From eeff2269e785c04ce533e65e85840a873641773d Mon Sep 17 00:00:00 2001 From: Smit1603 Date: Thu, 26 Oct 2023 03:19:37 +0530 Subject: [PATCH] Removing unittests from coverage report --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d41b0e5ad..b9464cd9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -413,7 +413,7 @@ jobs: # capture coverage info vers="${CC#*-}" lcov --directory build/ --capture --output-file coverage.info --gcov-tool /usr/bin/gcov-${vers} - lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' ${{ github.workspace }}'/llvm-project/*' --output-file coverage.info + lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' ${{ github.workspace }}'/llvm-project/*' ${{ github.workspace }}'/unittests/*' --output-file coverage.info # output coverage data for debugging (optional) lcov --list coverage.info