mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
Fix positional argument handling in tox
It's now possible to pass a single test through tox to nosetest
This commit is contained in:
parent
694f46923b
commit
0c20acce11
1 changed files with 2 additions and 2 deletions
4
tox.ini
4
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
|
||||
|
|
Loading…
Add table
Reference in a new issue