summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-03-30 20:39:49 -0400
committerGitHub <noreply@github.com>2020-03-30 19:39:49 -0500
commitd65d76490dd3e7384be7ee7eb03e858548aa7591 (patch)
tree56d394e403d128524a0c536bad528f5d95786121 /tox.ini
parent0c8727f57ac0b2b1a16c65787c076ed99d8f0407 (diff)
downloadpyopenssl-d65d76490dd3e7384be7ee7eb03e858548aa7591.tar.gz
Uhhh, fix twisted tests to actually run twisted (wat) (#906)
* Uhhh, fix twisted tests to actually run twisted (wat) * Update tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 3 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 9fe295f..19e6567 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = {pypy,pypy3,py27,py35,py36,py37,py38}{,-cryptographyMaster,-cryptographyMinimum}{,-randomorder},py27-twistedMaster,pypi-readme,check-manifest,flake8,docs,coverage-report
+envlist = {pypy,pypy3,py27,py35,py36,py37,py38}{,-cryptographyMaster,-cryptographyMinimum}{,-randomorder},py37-twistedMaster,pypi-readme,check-manifest,flake8,docs,coverage-report
[testenv]
whitelist_externals =
@@ -22,13 +22,14 @@ commands =
coverage run --parallel -m OpenSSL.debug
coverage run --parallel -m pytest -v {posargs}
-[testenv:py27-twistedMaster]
+[testenv:py37-twistedMaster]
deps =
# [tls,conch] syntax doesn't work here so we enumerate all dependencies.
git+https://github.com/twisted/twisted
idna
service_identity
bcrypt
+setenv =
passenv = ARCHFLAGS CFLAGS LC_ALL LDFLAGS PATH LD_LIBRARY_PATH TERM
commands =
python -c "import OpenSSL.SSL; print(OpenSSL.SSL.SSLeay_version(OpenSSL.SSL.SSLEAY_VERSION))"