aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-01-17 11:45:26 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-01-17 11:45:26 -0500
commitd9370a17753f6cf951202b7a88302de3b084e908 (patch)
treebc7e9f486f6c3fc5c2304b02189937d396cf8e1b
parent3499d6dd025ddbb4b05ab12f8c74acf98430aa97 (diff)
downloadcryptography-d9370a17753f6cf951202b7a88302de3b084e908.tar.gz
cryptography-d9370a17753f6cf951202b7a88302de3b084e908.tar.bz2
cryptography-d9370a17753f6cf951202b7a88302de3b084e908.zip
Give up on tox
-rw-r--r--tox.ini24
1 files changed, 14 insertions, 10 deletions
diff --git a/tox.ini b/tox.ini
index d5a6f861..6ad82856 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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