Fix positional argument handling in tox

It's now possible to pass a single test through tox to nosetest
This commit is contained in:
Anders Ingemann 2015-03-25 21:07:25 +01:00
parent 694f46923b
commit 0c20acce11

View file

@ -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