diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-26 19:36:44 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-26 19:36:44 -0400 |
commit | 5beefaeefb1d5d94087f7ebf9174bdac20835d51 (patch) | |
tree | 18d5fe5d07504ceeea06c89b0826144db2f79396 /tox.ini | |
parent | b56a611cba58c2439dd826415d632f5044283706 (diff) | |
parent | 11491667e1a14c825438dd15dfdfee64d6288f3b (diff) | |
download | cryptography-5beefaeefb1d5d94087f7ebf9174bdac20835d51.tar.gz cryptography-5beefaeefb1d5d94087f7ebf9174bdac20835d51.tar.bz2 cryptography-5beefaeefb1d5d94087f7ebf9174bdac20835d51.zip |
Merge pull request #1991 from reaperhulk/print-openssl-version
print the version of openssl loaded by cryptography in tox
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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] |