Use default version of gcovr.

This commit is contained in:
Nathan Moinvaziri 2024-06-01 19:55:15 -07:00
parent 8a00c0e9fb
commit 437d2f0e4d

View File

@ -253,11 +253,16 @@ jobs:
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 \