diff options
| author | Mark Adams <mark@markadams.me> | 2017-04-17 10:49:54 -0500 |
|---|---|---|
| committer | Mark Adams <mark@markadams.me> | 2017-04-17 11:10:38 -0500 |
| commit | 496c511fb72e84ee185f8c2c986e2b68953158ff (patch) | |
| tree | 239bb1bcab322f5df57955c411a48760f4ee476a | |
| parent | ce7f9293e998fa7a01f612b9193a05f17167de1e (diff) | |
| download | pyjwt-pytest-version-bump.tar.gz | |
Bump pytest version to latestpytest-version-bump
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
| -rw-r--r-- | setup.cfg | 4 | ||||
| -rwxr-xr-x | setup.py | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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] @@ -30,7 +30,7 @@ if sys.argv[-1] == 'publish': sys.exit() tests_require = [ - 'pytest==2.7.3', + 'pytest >3,<4', 'pytest-cov', 'pytest-runner', ] |
