Skip to content

Commit

Permalink
Use default version of gcovr.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed Jun 2, 2024
1 parent 8a00c0e commit 437d2f0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 437d2f0

Please sign in to comment.