aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-03-19 16:47:30 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2016-03-19 16:47:30 -0400
commitb8b1d7200504e39054222643a88b09761e66d4f8 (patch)
treeae57ea0727236179938ffa2fb084b0b400eb3926 /tox.ini
parentf3944404d9a73ad983b1fef05c4e2450e85bf544 (diff)
downloadcryptography-b8b1d7200504e39054222643a88b09761e66d4f8.tar.gz
cryptography-b8b1d7200504e39054222643a88b09761e66d4f8.tar.bz2
cryptography-b8b1d7200504e39054222643a88b09761e66d4f8.zip
Instead of running a python -c, use pytest_report_header to indicate OpenSSL version
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 0 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 424dc5bb..4db19b82 100644
--- a/tox.ini
+++ b/tox.ini
@@ -9,7 +9,6 @@ deps =
passenv = ARCHFLAGS LDFLAGS CFLAGS INCLUDE LIB LD_LIBRARY_PATH USERNAME
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
# and collapse them into src/cryptography/__init__.py.
@@ -42,7 +41,6 @@ commands =
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]