From 7299a6c6255a971a32dd36b6fc5845c953e8a035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Valg=C3=B4de?= Date: Mon, 1 Apr 2024 01:59:58 +0100 Subject: [PATCH] Issue #5 - Remove externals from code coverage report. --- .github/workflows/static.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index a46e752..c2c144b 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -65,11 +65,11 @@ jobs: run: ctest -C ${{env.BUILD_TYPE}} - name: InstallCoverageReportDependencies - run: sudo apt-get -y install lcov + run: sudo apt-get -y install lcov gcov - name: TestCoverageData working-directory: ${{github.workspace}}/build/ - run: geninfo --no-external "./PTN_Engine" -b "../" -o coverage.info + run: geninfo "./PTN_Engine" -b "../" -o coverage.info - name: TestCoverageReport working-directory: ${{github.workspace}}/build/