Skip to content

Commit

Permalink
Pin coverage to < 7 when running coveragepy-lcov (#66)
Browse files Browse the repository at this point in the history
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 committed Jan 18, 2023
1 parent 5b0b10a commit 4074aba
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
Expand Down

0 comments on commit 4074aba

Please sign in to comment.