unpin coverage

need run.parallel = True in coveragerc to fix database errors with coverage 5

exclude the resulting .coverage.host.pid files in gitignore
This commit is contained in:
Min RK
2018-10-19 14:03:13 +02:00
parent 1be2b3721a
commit 7b22330583
3 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
[run]
parallel = True
branch = False
omit =
jupyterhub/tests/*

1
.gitignore vendored
View File

@@ -21,6 +21,7 @@ share/jupyterhub/static/css/style.min.css.map
*.egg-info
MANIFEST
.coverage
.coverage.*
htmlcov
.idea/
.pytest_cache

View File

@@ -2,7 +2,7 @@
mock
beautifulsoup4
codecov
coverage<5 # pin coverage to < 5 due to coveragepy#716
coverage
cryptography
html5lib # needed for beautifulsoup
pytest-cov