Enable unit tests of certbot core on Python 3

This commit is contained in:
Yen Chi Hsuan
2016-08-06 21:09:43 +08:00
parent e1d8ba4977
commit fe76d558ed
26 changed files with 142 additions and 99 deletions
+6
View File
@@ -40,16 +40,22 @@ deps =
commands =
pip install -e acme[dns,dev]
nosetests -v acme
pip install -e .[dev]
nosetests -v certbot
[testenv:py34]
commands =
pip install -e acme[dns,dev]
nosetests -v acme
pip install -e .[dev]
nosetests -v certbot
[testenv:py35]
commands =
pip install -e acme[dns,dev]
nosetests -v acme
pip install -e .[dev]
nosetests -v certbot
[testenv:cover]
basepython = python2.7