diff options
-rw-r--r-- | tox.ini | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -4,8 +4,12 @@ envlist = py26,py27,pypy,py33,py34,py35,docs,pep8,py3pep8 [testenv] # If you add a new dep here you probably need to add it in setup.py as well deps = - .[test] coverage + iso8601 + pretend + pytest + hypothesis>=1.11.4 + pyasn1_modules ./vectors passenv = ARCHFLAGS LDFLAGS CFLAGS INCLUDE LIB LD_LIBRARY_PATH USERNAME commands = @@ -18,15 +22,6 @@ commands = coverage combine coverage report -m -# This target disables coverage on pypy because of performance problems with -# coverage.py on pypy. -[testenv:pypy-nocoverage] -basepython = pypy -commands = - pip list - python -c "from cryptography.hazmat.backends.openssl.backend import backend; print(backend.openssl_version_text())" - py.test --capture=no --strict {posargs} - [testenv:docs] deps = doc8 @@ -51,6 +46,15 @@ basepython = python2.7 commands = sphinx-build -W -b linkcheck docs docs/_build/html +# This target disables coverage on pypy because of performance problems with +# coverage.py on pypy. +[testenv:pypy-nocoverage] +basepython = pypy +commands = + pip list + python -c "from cryptography.hazmat.backends.openssl.backend import backend; print(backend.openssl_version_text())" + py.test --capture=no --strict {posargs} + [testenv:pep8] deps = flake8 |