Skip to content

Commit

Permalink
Merge pull request pyca#2011 from reaperhulk/tox-env-versions
Browse files Browse the repository at this point in the history
list package versions in tox env for easier debugging
  • Loading branch information
alex committed Jun 6, 2015
2 parents c9cd3ec + 7cf4c30 commit 672b843
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -47,13 +48,15 @@ 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}

# Temporarily disable coverage on pypy3 because of performance problems with
# 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}

Expand Down

0 comments on commit 672b843

Please sign in to comment.