Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restrict coverage version to '<5.0.0' #247

Merged
merged 1 commit into from
Dec 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install coverage pretend pytest
python -m pip install coverage<5.0.0 pretend pytest

- name: Test coverage
run: |
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
# pytest >= 5.0.0 fails with pypy3 https://github.com/pytest-dev/pytest/issues/5807
run: |
python -m pip install --upgrade pip
python -m pip install coverage pretend pytest==4.6.5
python -m pip install coverage<5.0.0 pretend pytest==4.6.5

- name: Test coverage
run: |
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist = py27,pypy,pypy3,py34,py35,py36,py37,py38,docs,lint

[testenv]
deps =
coverage
coverage<5.0.0
pretend
pytest
pip>=9.0.2
Expand Down