Skip to content

Commit

Permalink
Pin coverage to < 7 when running coveragepy-lcov
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 9, 2023
1 parent d26f4a5 commit f9e3a4c
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 f9e3a4c

Please sign in to comment.