aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-06-06 08:45:09 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-06-06 08:55:43 -0500
commit7cf4c30680d2b901d66be8070f5821038fd5aa81 (patch)
treec98976833261091252d52d033a8451bca6d6cd82
parentc9cd3ecb21fc8a382703368b64d587834ff467fb (diff)
downloadcryptography-7cf4c30680d2b901d66be8070f5821038fd5aa81.tar.gz
cryptography-7cf4c30680d2b901d66be8070f5821038fd5aa81.tar.bz2
cryptography-7cf4c30680d2b901d66be8070f5821038fd5aa81.zip
list package versions in tox env for easier debugging
-rw-r--r--tox.ini3
1 files changed, 3 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 6d6bb120..96a175fa 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,6 +11,7 @@ deps =
./vectors
passenv = ARCHFLAGS LDFLAGS CFLAGS INCLUDE LIB LD_LIBRARY_PATH
commands =
+ pip list
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
@@ -47,6 +48,7 @@ commands =
# coverage.py on pypy.
[testenv: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}
@@ -54,6 +56,7 @@ commands =
# coverage.py on pypy3.
[testenv:pypy3]
commands =
+ pip list
python -c "from cryptography.hazmat.backends.openssl.backend import backend; print(backend.openssl_version_text())"
py.test --capture=no --strict {posargs}