From 437d2f0e4d2f9102572285bfd3b1961df7cb8810 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Sat, 1 Jun 2024 19:55:15 -0700 Subject: [PATCH] Use default version of gcovr. --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2bf5a77..1ec8090 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -252,12 +252,17 @@ jobs: - name: Run test cases run: ctest --output-on-failure -C ${{ matrix.build-config || 'Release' }} working-directory: ${{ matrix.build-dir }} + + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: '3.x' - name: Generate coverage report shell: bash if: always() && matrix.codecov run: | - python3 -u -m pip install --user gcovr==5.0 --ignore-installed + python3 -u -m pip install gcovr python3 -m gcovr \ --exclude-unreachable-branches \ --gcov-ignore-parse-errors \