Added EDP testing

Added EDP testing to integration tests

Implements blueprint: add-edp-tests

Change-Id: I044ae33e72e6508210efa278015229c66643740e
This commit is contained in:
Vadim Rovachev 2013-10-07 18:40:16 +04:00
parent 7e5575ea2e
commit 096e254073
2 changed files with 10 additions and 1 deletions

2
.gitignore vendored
View File

@ -36,7 +36,7 @@ etc/savanna/*.conf
etc/savanna/*.topology
etc/savanna.conf
ChangeLog
savanna/tests/integration/configs/config.py
savanna/tests/integration/configs/itest.conf
cscope.out
tools/lintstack.head.py
tools/pylint_exceptions

View File

@ -21,6 +21,15 @@ deps =
commands = nosetests -w unit {posargs}
[testenv:integration]
setenv =
VIRTUAL_ENV={envdir}
NOSE_WITH_OPENSTACK=1
NOSE_OPENSTACK_COLOR=1
NOSE_OPENSTACK_RED=2500
NOSE_OPENSTACK_YELLOW=1500
NOSE_OPENSTACK_SHOW_ELAPSED=1
NOSE_OPENSTACK_STDOUT=1
NOSE_XUNIT=1
commands = nosetests -w integration -x {posargs}
[testenv:cover]