Unpin coverage

The problem was fixed in coverage 5.0.2.
This commit is contained in:
Hynek Schlawack 2020-01-06 08:45:50 +01:00
parent 62a173edeb
commit e67cc51930
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ INSTALL_REQUIRES = []
EXTRAS_REQUIRE = { EXTRAS_REQUIRE = {
"docs": ["sphinx", "zope.interface"], "docs": ["sphinx", "zope.interface"],
"tests": [ "tests": [
"coverage<5.0", "coverage",
"hypothesis", "hypothesis",
"pympler", "pympler",
"pytest>=4.3.0", # 4.3.0 dropped last use of `convert` "pytest>=4.3.0", # 4.3.0 dropped last use of `convert`

View File

@ -50,7 +50,7 @@ commands = coverage run --parallel -m pytest {posargs}
[testenv:coverage-report] [testenv:coverage-report]
basepython = python3.7 basepython = python3.7
skip_install = true skip_install = true
deps = coverage<5.0 deps = coverage
commands = commands =
coverage combine coverage combine
coverage report coverage report