summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormorganrOL <morgan.richomme@orange.com>2015-05-15 08:34:39 +0200
committermorganrOL <morgan.richomme@orange.com>2015-05-15 08:34:39 +0200
commit0bb0aa00c194892f1acc1bfb289dc953ddf0cc3d (patch)
treeb6ecabf6ad741d15630996ecf14a8a5240c05ccf
parent94218a84c0fd842ac431c37ebb6f7be1c5a436ca (diff)
remove heat from the list of rally benchs to execute for R1 (out of scope)
JIRA: FUNCTEST-1 Change-Id: Iccbed6abc1bf4583d2d7c504e422603481712af4 Signed-off-by: morganrOL <morgan.richomme@orange.com>
-rw-r--r--testcases/VIM/OpenStack/CI/libraries/run_rally.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/run_rally.py b/testcases/VIM/OpenStack/CI/libraries/run_rally.py
index 09b64f39f..aae723510 100644
--- a/testcases/VIM/OpenStack/CI/libraries/run_rally.py
+++ b/testcases/VIM/OpenStack/CI/libraries/run_rally.py
@@ -28,7 +28,7 @@ parser = argparse.ArgumentParser()
parser.add_argument("test_name", help="The name of the test you want to perform with rally. "
"Possible values are : "
"[ {d[0]} | {d[1]} | {d[2]} | {d[3]} | {d[4]} | {d[5]} | {d[6]} "
- "| {d[7]} | {d[8]} | {d[9]} | {d[10]} | {d[11]} | {d[12]}]. The 'all' value performs all the tests scenarios "
+ "| {d[7]} | {d[8]} | {d[9]} | {d[10]} | {d[11]} | {d[12]}]. The 'all' value performs all the possible tests scenarios"
"except 'tempest'".format(d=tests))
parser.add_argument("-d", "--debug", help="Debug mode", action="store_true")
@@ -227,7 +227,7 @@ def main():
if args.test_name == "all":
for test_name in tests:
- if not (test_name == 'all' or test_name == 'tempest'):
+ if not (test_name == 'all' or test_name == 'tempest' or test_name == 'heat' or test_name == 'smoke' ):
print(test_name)
run_task(test_name)
else: