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

3384 Unpin coverage #783

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Expand Up @@ -51,3 +51,9 @@ zope.interface-*.egg
# This is the plaintext of the private environment needed for some CircleCI
# operations. It's never supposed to be checked in.
secret-env-plain

# coverage 5.x writes a series of sqlite files.
/.coverage.*

# ignore results of running integration tests.
/integration.eliot.json
1 change: 1 addition & 0 deletions newsfragments/3384.minor
@@ -0,0 +1 @@
Coverage is not pinned at ~= 4.5 anymore.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -377,7 +377,7 @@ def run(self):
# coverage 5.0 breaks the integration tests in some opaque way.
# This probably needs to be addressed in a more permanent way
# eventually...
"coverage ~= 4.5",
"coverage",
"mock",
"tox",
"pytest",
Expand Down