diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-08-06 23:44:07 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-08-06 22:44:07 -0500 |
commit | 221b750434656ce67386a561bc7cea5411fd492e (patch) | |
tree | 04f39f87f2609482c48f0143ce13fff6c54bd5c8 | |
parent | aa3f44dcab478084c83384ff377cf4bc66337d1f (diff) | |
download | py-bcrypt-git-221b750434656ce67386a561bc7cea5411fd492e.tar.gz |
Blacklist pytest version which breaks things (#118)
* Use setup.py to get dep info
* Blacklist pytest version which breaks things
* oops
-rw-r--r-- | setup.py | 4 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -206,11 +206,11 @@ setup( ], extras_require={ "tests": [ - "pytest", + "pytest!=3.2.0", ], }, tests_require=[ - "pytest", + "pytest!=3.2.0", ], package_dir={"": "src"}, @@ -2,10 +2,10 @@ envlist = py26,py27,pypy,py33,py34,py35,py36,pep8,py3pep8,packaging [testenv] -# If you add a new dep here you probably need to add it in setup.py as well +extras = + tests deps = coverage - pytest commands = coverage run -m pytest --strict {posargs} coverage report -m --fail-under 100 |