mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +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 =
|
deps =
|
||||||
nose
|
nose
|
||||||
nose-cov
|
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]
|
[testenv:integration]
|
||||||
deps =
|
deps =
|
||||||
nose
|
nose
|
||||||
Pyro4 >= 4.30
|
Pyro4 >= 4.30
|
||||||
pyvbox >= 0.2.0
|
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]
|
[testenv:docs]
|
||||||
changedir = docs
|
changedir = docs
|
||||||
|
|
Loading…
Add table
Reference in a new issue