mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 18:56:55 +02:00
Revert switch to python setup.py test in tox.ini.
This had more of a purpose when we were moving mock to test_requires. I'll reintroduce this in the separate PR for that. Also bring back the testing extra in tox for now.
This commit is contained in:
@@ -8,20 +8,23 @@
|
|||||||
skipsdist = true
|
skipsdist = true
|
||||||
envlist = py{26,27,33,34,35},py{26,27}-oldest,cover,lint
|
envlist = py{26,27,33,34,35},py{26,27}-oldest,cover,lint
|
||||||
|
|
||||||
|
# nosetest -v => more verbose output, allows to detect busy waiting
|
||||||
|
# loops, especially on Travis
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
# packages installed separately to ensure that downstream deps problems
|
# packages installed separately to ensure that downstream deps problems
|
||||||
# are detected, c.f. #1002
|
# are detected, c.f. #1002
|
||||||
commands =
|
commands =
|
||||||
pip install -e acme
|
pip install -e acme[testing]
|
||||||
python acme/setup.py test
|
nosetests -v acme
|
||||||
pip install -e .
|
pip install -e .[testing]
|
||||||
python setup.py test
|
nosetests -v letsencrypt
|
||||||
pip install -e letsencrypt-apache
|
pip install -e letsencrypt-apache
|
||||||
python letsencrypt-apache/setup.py test
|
nosetests -v letsencrypt_apache
|
||||||
pip install -e letsencrypt-nginx
|
pip install -e letsencrypt-nginx
|
||||||
python letsencrypt-nginx/setup.py test
|
nosetests -v letsencrypt_nginx
|
||||||
pip install -e letshelp-letsencrypt
|
pip install -e letshelp-letsencrypt
|
||||||
python letshelp-letsencrypt/setup.py test
|
nosetests -v letshelp_letsencrypt
|
||||||
|
|
||||||
setenv =
|
setenv =
|
||||||
PYTHONPATH = {toxinidir}
|
PYTHONPATH = {toxinidir}
|
||||||
@@ -37,18 +40,18 @@ deps =
|
|||||||
|
|
||||||
[testenv:py33]
|
[testenv:py33]
|
||||||
commands =
|
commands =
|
||||||
pip install -e acme
|
pip install -e acme[testing]
|
||||||
python acme/setup.py test
|
nosetests -v acme
|
||||||
|
|
||||||
[testenv:py34]
|
[testenv:py34]
|
||||||
commands =
|
commands =
|
||||||
pip install -e acme
|
pip install -e acme[testing]
|
||||||
python acme/setup.py test
|
nosetests -v acme
|
||||||
|
|
||||||
[testenv:py35]
|
[testenv:py35]
|
||||||
commands =
|
commands =
|
||||||
pip install -e acme
|
pip install -e acme[testing]
|
||||||
python acme/setup.py test
|
nosetests -v acme
|
||||||
|
|
||||||
[testenv:cover]
|
[testenv:cover]
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
|
|||||||
Reference in New Issue
Block a user