python3 -u -m venv ${{ matrix.build-dir || '.' }}/venv
source ${{ matrix.build-dir || '.' }}/venv/${{ runner.os == 'Windows' && 'Scripts' || 'bin' }}/activate
python3 -u -m pip install gcovr
- python3 -m gcovr ${{ matrix.build-dir || '' }} -j 3 --verbose \
+ python3 -m gcovr ${{ matrix.build-dir || '' }} -j 3 --gcov-ignore-parse-errors --verbose \
--exclude-unreachable-branches \
--gcov-executable "${{ matrix.gcov-exec || 'gcov' }}" \
--root ${{ matrix.build-src-dir || '.' }} \
if: matrix.codecov
run: |
python3 -u -m pip install gcovr
- python3 -m gcovr -j 3 --verbose \
+ python3 -m gcovr -j 3 --gcov-ignore-parse-errors --verbose \
--exclude-unreachable-branches \
--gcov-executable "${{ matrix.gcov-exec || 'gcov' }}" \
--root . \