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:
authorFelix Yan <felixonmars@archlinux.org>2015-11-14 16:09:03 +0300
committerFelix Yan <felixonmars@archlinux.org>2015-11-14 16:09:03 +0300
commit324ebf468db402dbe44ba780ed2df682ab99af86 (patch)
tree4a29ef7ad09b2d06e15e1007891ac53da88c8730 /tox.ini
parent151c674cba6cd1e88521dbb5141d0c25662757b1 (diff)
Update tox.ini to run acme tests with Python 3.5
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 6 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 9988d8d1f..d1fafe20f 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,py33,py34,cover,lint
+envlist = py26,py27,py33,py34,py35,cover,lint
# nosetest -v => more verbose output, allows to detect busy waiting
# loops, especially on Travis
@@ -41,6 +41,11 @@ commands =
pip install -e acme[testing]
nosetests -v acme
+[testenv:py35]
+commands =
+ pip install -e acme[testing]
+ nosetests -v acme
+
[testenv:cover]
basepython = python2.7
commands =