Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-10-17 00:28:23 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-10-17 00:33:02 +0300
commit2f3b6251c70beacbe4bc72fb64a3fbfcebe64f7e (patch)
treea47aafe2f24c4f2c0c791e81d72cd246cf5b22f4 /tox.ini
parentfd1103ccda1c6c69bec57e868d508d433293df4c (diff)
Tox: verbose nosetests
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini15
1 files changed, 9 insertions, 6 deletions
diff --git a/tox.ini b/tox.ini
index 4eddc0e9d..0bd085975 100644
--- a/tox.ini
+++ b/tox.ini
@@ -8,16 +8,19 @@
skipsdist = true
envlist = py27,cover,lint
+# nosetest -v => more verbose output, allows to detect busy waiting
+# loops, especially on Travis
+
[testenv]
commands =
pip install -e acme[testing]
- nosetests acme
+ nosetests -v acme
pip install -r requirements.txt -e .[testing]
- nosetests letsencrypt
+ nosetests -v letsencrypt
pip install letsencrypt-apache
- nosetests letsencrypt_apache
+ nosetests -v letsencrypt_apache
pip install letsencrypt-nginx
- nosetests letsencrypt_nginx
+ nosetests -v letsencrypt_nginx
setenv =
PYTHONPATH = {toxinidir}
@@ -27,12 +30,12 @@ setenv =
[testenv:py33]
commands =
pip install -e acme[testing]
- nosetests acme
+ nosetests -v acme
[testenv:py34]
commands =
pip install -e acme[testing]
- nosetests acme
+ nosetests -v acme
[testenv:cover]
basepython = python2.7