Skip to content

Commit

Permalink
ci: pin coverage < 7 when running coveragepy-lcov (#33)
Browse files Browse the repository at this point in the history
Pin coverage to < 7 when running coveragepy-lcov

coverage 7.0.0 removed `FnmatchMatcher`, which coverage-lcov
currently depends on.
chaychoong/coveragepy-lcov#5

We can unpin this once coverage-lcov has been fixed.
  • Loading branch information
garrison authored Jan 9, 2023
1 parent d26f4a5 commit 634f467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox coveragepy-lcov
pip install tox coveragepy-lcov 'coverage<7'
- name: Run coverage
run: tox -e coverage
- name: Convert to lcov
Expand Down

0 comments on commit 634f467

Please sign in to comment.