Make novaclient functional tests use pretty tox

This makes local running of the tests much nicer as we can see the
progress of successful tests working around the testr issue of showing
no output until the end of the run.

Change-Id: I4adc965fd95b6e79a3ec26614d1c9f98262593b9
This commit is contained in:
Sean Dague 2016-08-12 06:31:41 -04:00
parent 4d971af927
commit 04613efbcf
1 changed files with 2 additions and 2 deletions

View File

@ -42,14 +42,14 @@ basepython = python2.7
passenv = OS_NOVACLIENT_TEST_NETWORK
setenv =
OS_TEST_PATH = ./novaclient/tests/functional
commands = python setup.py testr --testr-args='--concurrency=1 {posargs}'
commands = bash tools/pretty_tox.sh '--concurrency=1 {posargs}'
[testenv:functional-py34]
basepython = python3.4
passenv = OS_NOVACLIENT_TEST_NETWORK
setenv =
OS_TEST_PATH = ./novaclient/tests/functional
commands = python setup.py testr --testr-args='--concurrency=1 {posargs}'
commands = bash tools/pretty_tox.sh '--concurrency=1 {posargs}'
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'