summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.coveragerc2
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/.coveragerc b/.coveragerc
index 307e3a9a..96bf5d72 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -20,5 +20,5 @@ precision = 1
[html]
-# (string, default “htmlcov”): where to write the HTML report files.
+# (string, default "htmlcov"): where to write the HTML report files.
directory = htmlcov
diff --git a/setup.py b/setup.py
index 9b78fc5b..b19ae7f5 100755
--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@ EXTRAS_REQUIRE = {
# Extra dependencies for running unit tests
'test': ["gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env
"mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module
- 'codecov', 'pytest', 'pytest-cov', 'pytest-mock', 'coverage < 5.0'],
+ 'codecov', 'coverage', 'pytest', 'pytest-cov', 'pytest-mock'],
# development only dependencies: install with 'pip install -e .[dev]'
'dev': ["mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module
'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'flake8',