Skip to content

Commit 97dd6f3

Browse files
authored
Merge pull request #842 from python-cmd2/coverage_config_file
Replace non-ASCII quotes in .coveragerc with ASCII ones
2 parents 162603e + 7242aea commit 97dd6f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ precision = 1
2020

2121

2222
[html]
23-
# (string, default htmlcov): where to write the HTML report files.
23+
# (string, default "htmlcov"): where to write the HTML report files.
2424
directory = htmlcov

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# Extra dependencies for running unit tests
4040
'test': ["gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env
4141
"mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module
42-
'codecov', 'pytest', 'pytest-cov', 'pytest-mock', 'coverage < 5.0'],
42+
'codecov', 'coverage', 'pytest', 'pytest-cov', 'pytest-mock'],
4343
# development only dependencies: install with 'pip install -e .[dev]'
4444
'dev': ["mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module
4545
'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'flake8',

0 commit comments

Comments
 (0)