aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-26 07:57:10 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-26 07:58:43 -0500
commit11491667e1a14c825438dd15dfdfee64d6288f3b (patch)
treed16645b345a494c252ca56012a95979f2424a9ca /tox.ini
parent2918db0b72f841ace8561bc0f85d8d4c190bc169 (diff)
downloadcryptography-11491667e1a14c825438dd15dfdfee64d6288f3b.tar.gz
cryptography-11491667e1a14c825438dd15dfdfee64d6288f3b.tar.bz2
cryptography-11491667e1a14c825438dd15dfdfee64d6288f3b.zip
print the version of openssl loaded by cryptography in tox
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 3 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 77382ebe..6d6bb120 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,6 +11,7 @@ deps =
./vectors
passenv = ARCHFLAGS LDFLAGS CFLAGS INCLUDE LIB LD_LIBRARY_PATH
commands =
+ python -c "from cryptography.hazmat.backends.openssl.backend import backend; print(backend.openssl_version_text())"
# We use parallel mode and then combine here so that coverage.py will take
# the paths like .tox/py34/lib/python3.4/site-packages/cryptography/__init__.py
# and collapse them into src/cryptography/__init__.py.
@@ -46,12 +47,14 @@ commands =
# coverage.py on pypy.
[testenv:pypy]
commands =
+ python -c "from cryptography.hazmat.backends.openssl.backend import backend; print(backend.openssl_version_text())"
py.test --capture=no --strict {posargs}
# Temporarily disable coverage on pypy3 because of performance problems with
# coverage.py on pypy3.
[testenv:pypy3]
commands =
+ python -c "from cryptography.hazmat.backends.openssl.backend import backend; print(backend.openssl_version_text())"
py.test --capture=no --strict {posargs}
[testenv:pep8]