Add logic to tox.ini to run all tempest tests

Change-Id: Ib71d6c184042f0bcbe76de87ae6fe6815492d0c2
Implements: blueprint Restore-periodic-tests-for-all-of-tempest
This commit is contained in:
Giampaolo Lauria 2013-06-07 14:59:19 -04:00
parent abf7370cfb
commit 7a3e004acc

12
tox.ini
View File

@ -10,6 +10,18 @@ setenv = VIRTUAL_ENV={envdir}
NOSE_OPENSTACK_SHOW_ELAPSED=1
NOSE_OPENSTACK_STDOUT=1
[testenv:all]
sitepackages = True
setenv = VIRTUAL_ENV={envdir}
NOSE_WITH_OPENSTACK=1
NOSE_OPENSTACK_COLOR=1
NOSE_OPENSTACK_RED=15
NOSE_OPENSTACK_YELLOW=3
NOSE_OPENSTACK_SHOW_ELAPSED=1
NOSE_OPENSTACK_STDOUT=1
commands =
nosetests --logging-format '%(asctime)-15s %(message)s' --with-xunit --xunit-file=nosetests-all.xml -sv tempest
[testenv:full]
sitepackages = True
setenv = VIRTUAL_ENV={envdir}