Skip to content

Commit

Permalink
Tox tests detect downstream deps errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba committed Oct 16, 2015
1 parent 4a7ce62 commit fd1103c
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit fd1103c

Please sign in to comment.