Bump pytest version to latest

Previously, pytest was pinned to an old version because of a bug in
pytest that has since been fixed. This change now puts us back to using
the latest version of pytest.

Fixes #253
This commit is contained in:
Mark Adams 2017-04-17 10:49:54 -05:00
parent ce7f9293e9
commit 496c511fb7
2 changed files with 3 additions and 3 deletions

View File

@ -1,13 +1,13 @@
[flake8]
max-line-length = 119
exclude =
exclude =
docs/,
.tox/
[wheel]
universal = 1
[pytest]
[tool:pytest]
addopts = --cov-report term-missing --cov-config=.coveragerc --cov .
[aliases]

View File

@ -30,7 +30,7 @@ if sys.argv[-1] == 'publish':
sys.exit()
tests_require = [
'pytest==2.7.3',
'pytest >3,<4',
'pytest-cov',
'pytest-runner',
]