Skip to content

Commit

Permalink
Added comments explaining why coverage is pinned at < 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonnnj committed Dec 18, 2019
1 parent 391ed41 commit bf9e489
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,16 @@ def package_vars(version_file):
include_package_data=True,
install_requires=["docopt", "setuptools"],
extras_require={
"test": ["pre-commit", "pytest", "pytest-cov", "coveralls", "coverage < 5.0"]
"test": [
"pre-commit",
"coveralls",
# coveralls does not currently support coverage 5.0
# https://github.com/coveralls-clients/coveralls-python/issues/203
# is the issue for this on the coveralls project
"coverage < 5.0",
"pytest-cov",
"pytest",
]
},
# Conveniently allows one to run the CLI tool as `example`
entry_points={"console_scripts": ["example = example.example:main"]},
Expand Down

0 comments on commit bf9e489

Please sign in to comment.