mirror of
https://github.com/certbot/certbot.git
synced 2026-06-13 18:50:20 -04:00
Tox tests detect downstream deps errors.
This commit is contained in:
parent
4a7ce62c62
commit
fd1103ccda
1 changed files with 8 additions and 7 deletions
15
tox.ini
15
tox.ini
|
|
@ -10,13 +10,14 @@ envlist = py27,cover,lint
|
|||
|
||||
[testenv]
|
||||
commands =
|
||||
pip install -r requirements.txt -e acme -e .[testing] -e letsencrypt-apache -e letsencrypt-nginx -e letshelp-letsencrypt
|
||||
# -q does not suppress errors
|
||||
python setup.py test -q
|
||||
python setup.py test -q -s acme
|
||||
python setup.py test -q -s letsencrypt_apache
|
||||
python setup.py test -q -s letsencrypt_nginx
|
||||
python setup.py test -q -s letshelp_letsencrypt
|
||||
pip install -e acme[testing]
|
||||
nosetests acme
|
||||
pip install -r requirements.txt -e .[testing]
|
||||
nosetests letsencrypt
|
||||
pip install letsencrypt-apache
|
||||
nosetests letsencrypt_apache
|
||||
pip install letsencrypt-nginx
|
||||
nosetests letsencrypt_nginx
|
||||
|
||||
setenv =
|
||||
PYTHONPATH = {toxinidir}
|
||||
|
|
|
|||
Loading…
Reference in a new issue