aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-01-03 21:09:22 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-01-03 21:10:59 -0600
commit1dafc3f9b6e7f2743d1acad876a960c9d6885a80 (patch)
treedbd11c54aab763b190139988c879370d4513ef3e /tox.ini
parentcfd90a268cfd92afa0c820ef276c3a7ecbc4bc05 (diff)
downloadcryptography-1dafc3f9b6e7f2743d1acad876a960c9d6885a80.tar.gz
cryptography-1dafc3f9b6e7f2743d1acad876a960c9d6885a80.tar.bz2
cryptography-1dafc3f9b6e7f2743d1acad876a960c9d6885a80.zip
add a pypy-nocoverage target and use that on OS X
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 8 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index db09d8b8..af8217b4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -46,6 +46,14 @@ 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]
+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