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-08-19 23:24:44 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-08-19 23:24:44 +0300
commit4d9db06083094d3d1796f496d5fb62525c45e5b8 (patch)
tree755ec295cd1f37a24e4f6d183b63c3633ea94475 /tox.ini
parent26c1f003d0d05397154fe63e1f452ed2148cfe75 (diff)
Revert "Removed py3+ tests in tox"
This reverts commit 2c720b05ae2110624bf30fb1ebe2b752d08debb1.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 11 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index ebe9746c9..e0314c509 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,py33,py34,cover,lint
[testenv]
commands =
@@ -23,6 +23,16 @@ setenv =
PYTHONHASHSEED = 0
# https://testrun.org/tox/latest/example/basic.html#special-handling-of-pythonhas
+[testenv:py33]
+commands =
+ pip install -e acme[testing]
+ nosetests acme
+
+[testenv:py34]
+commands =
+ pip install -e acme[testing]
+ nosetests acme
+
[testenv:cover]
basepython = python2.7
commands =