[CI] Fix processing of coverage test outputs

Already fixed upstream (https://github.com/gcovr/gcovr/pull/883), so
future versions of gcovr should work fine.
This commit is contained in:
Ray Speth 2024-02-23 15:48:58 -05:00 committed by Ingmar Schoegl
parent 80b308b30c
commit 872dbd3c87

View File

@ -229,7 +229,7 @@ jobs:
- name: Setup python - name: Setup python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.8' python-version: '3.11'
architecture: x64 architecture: x64
- name: Install Apt dependencies - name: Install Apt dependencies
run: | run: |
@ -241,7 +241,7 @@ jobs:
- name: Install Python dependencies - name: Install Python dependencies
run: | run: |
python3 -m pip install ruamel.yaml scons numpy cython pandas scipy pytest \ python3 -m pip install ruamel.yaml scons numpy cython pandas scipy pytest \
pytest-github-actions-annotate-failures pytest-cov gcovr pint graphviz pytest-github-actions-annotate-failures pytest-cov gcovr!=7.0.0 pint graphviz
- name: Setup .NET Core SDK - name: Setup .NET Core SDK
uses: actions/setup-dotnet@v2 uses: actions/setup-dotnet@v2
with: with: