From fd1103ccda1c6c69bec57e868d508d433293df4c Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Fri, 16 Oct 2015 21:25:18 +0000 Subject: [PATCH] Tox tests detect downstream deps errors. --- tox.ini | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tox.ini b/tox.ini index b1055807793..4eddc0e9d93 100644 --- a/tox.ini +++ b/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}