collapse tox.ini test commands for readability

instead of specifying the test runs on seperate lines, just make
them a series of args on a single line.

Part of bp:tempest-repo-restructure

Change-Id: I1250c1ba6e2e8edf38bb32abb450cd3ce03c1dd3
This commit is contained in:
Sean Dague 2013-05-12 18:33:35 -04:00
parent f68257993b
commit 2077983b2d

View File

@ -20,8 +20,7 @@ setenv = VIRTUAL_ENV={envdir}
NOSE_OPENSTACK_SHOW_ELAPSED=1
NOSE_OPENSTACK_STDOUT=1
commands =
nosetests --logging-format '%(asctime)-15s %(message)s' --with-xunit --xunit-file=nosetests-full.xml -sv tempest/tests
nosetests --logging-format '%(asctime)-15s %(message)s' --with-xunit --xunit-file=nosetests-cli.xml -sv tempest/cli
nosetests --logging-format '%(asctime)-15s %(message)s' --with-xunit --xunit-file=nosetests-full.xml -sv tempest/tests tempest/cli
[testenv:smoke]
sitepackages = True
@ -47,8 +46,7 @@ setenv = VIRTUAL_ENV={envdir}
NOSE_OPENSTACK_STDOUT=1
commands =
python -m tools/tempest_coverage -c start --combine
nosetests --logging-format '%(asctime)-15s %(message)s' --with-xunit --xunit-file=nosetests-full.xml -sv tempest/tests
nosetests --logging-format '%(asctime)-15s %(message)s' --with-xunit --xunit-file=nosetests-cli.xml -sv tempest/cli
nosetests --logging-format '%(asctime)-15s %(message)s' --with-xunit --xunit-file=nosetests-full.xml -sv tempest/tests tempest/cli
python -m tools/tempest_coverage -c report --html
[testenv:pep8]