Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-07-11 19:11:09 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-07-12 14:37:56 +0300
commita876a664df358c04d1ae5d7eb67b5c55af53c5bc (patch)
tree721510db26a19c07a38e9347ef4b763f40e5d5d0 /tox.ini
parent802b9d4a4306954c255273d1a3b7b83d86aaaba8 (diff)
Add py3 tox tests for acme.jose
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 7 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index dc6fb567a..d1b9253ed 100644
--- a/tox.ini
+++ b/tox.ini
@@ -6,7 +6,7 @@
# acme and letsencrypt are not yet on pypi, so when Tox invokes
# "install *.zip", it will not find deps
skipsdist = true
-envlist = py26,py27,cover,lint
+envlist = py26,py27,py34,cover,lint
[testenv]
# share one venv across testenvs, instead of multiple
@@ -26,6 +26,12 @@ setenv =
PYTHONHASHSEED = 0
# https://testrun.org/tox/latest/example/basic.html#special-handling-of-pythonhas
+[testenv:py34]
+envdir = {toxinidir}/tox.venv3
+commands =
+ pip install -e acme[testing]
+ nosetests acme/acme/jose
+
[testenv:cover]
basepython = python2.7
commands =