summaryrefslogtreecommitdiffstats
path: root/testcases/config_functest.py
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-01-15 15:37:28 +0100
committerMorgan Richomme <morgan.richomme@orange.com>2016-01-15 15:03:57 +0000
commit3065ed6a59f40cd0cf5c7f1e8b91e059166c10b9 (patch)
treec34e9220c9575b359503841afda6417097b12da8 /testcases/config_functest.py
parent1a68a503cd0bf148e8c3b2aec9289f1604ee1fea (diff)
Remove extra output if CI_DEBUG is false
This way we have a nicer view in Jenkins when preparing Functest Change-Id: Ie0df3aa8b07ac2fd726d11b1ab01a7291d4c2c5e Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com> (cherry picked from commit 973c722f929eb3652d19a15911404f31a9f66216)
Diffstat (limited to 'testcases/config_functest.py')
-rwxr-xr-xtestcases/config_functest.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/testcases/config_functest.py b/testcases/config_functest.py
index 116825800..199fadfde 100755
--- a/testcases/config_functest.py
+++ b/testcases/config_functest.py
@@ -125,7 +125,10 @@ def action_start():
script += 'bundle install'
cmd = "/bin/bash -c '" + script + "'"
- functest_utils.execute_command(cmd,logger)
+ if os.environ.get("CI_DEBUG") == "false":
+ functest_utils.execute_command(cmd)
+ else:
+ functest_utils.execute_command(cmd,logger)
# Create result folder under functest if necessary
if not os.path.exists(RALLY_RESULT_DIR):
@@ -208,7 +211,7 @@ def action_clean():
logger.debug("Cleaning up the OpenStack deployment...")
cmd='python ' + REPO_PATH + \
- '/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py -d '
+ '/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py'
functest_utils.execute_command(cmd,logger)
logger.info("Functest environment clean!")
@@ -221,7 +224,10 @@ def install_rally():
logger.debug("Executing %s/install_rally.sh..." %RALLY_REPO_DIR)
install_script = RALLY_REPO_DIR + "/install_rally.sh --yes"
cmd = 'sudo ' + install_script
- functest_utils.execute_command(cmd,logger)
+ if os.environ.get("CI_DEBUG") == "false":
+ functest_utils.execute_command(cmd)
+ else:
+ functest_utils.execute_command(cmd,logger)
logger.debug("Creating Rally environment...")
cmd = "rally deployment create --fromenv --name="+DEPLOYMENT_MAME