aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini24
1 files changed, 10 insertions, 14 deletions
diff --git a/tox.ini b/tox.ini
index 6ad82856..d5a6f861 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,12 +4,8 @@ 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 =
@@ -22,6 +18,15 @@ 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
@@ -46,15 +51,6 @@ 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