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] [run]
parallel = True
branch = False branch = False
omit = omit =
jupyterhub/tests/* jupyterhub/tests/*

1
.gitignore vendored
View File

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

View File

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