From 0c20acce1125ad274d70d57ee8693ecbb7acf1c9 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Wed, 25 Mar 2015 21:07:25 +0100 Subject: [PATCH] Fix positional argument handling in tox It's now possible to pass a single test through tox to nosetest --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 2257010..a8c18c3 100644 --- a/tox.ini +++ b/tox.ini @@ -14,14 +14,14 @@ commands = flake8 bootstrapvz/ --exclude=minify_json.py {posargs} deps = nose nose-cov -commands = nosetests -v tests/unit --with-coverage --cover-package=bootstrapvz --cover-inclusive {posargs} +commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --verbose {posargs:tests/unit} [testenv:integration] deps = nose Pyro4 >= 4.30 pyvbox >= 0.2.0 -commands = nosetests -v tests/integration --with-coverage --cover-package=bootstrapvz --cover-inclusive {posargs} +commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --verbose {posargs:tests/integration} [testenv:docs] changedir = docs