summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2015-06-03 13:46:32 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-06-03 13:46:32 +0000
commitf7ad86c285bcd4f788065879e22bb6a6c991520e (patch)
tree6e9f180d9c154f0ae1a97b23ee366511f3cb26c5
parentb40ad4493a1a730da9b7b922035c7ab37ed3c0b0 (diff)
parent39ef42b0e8dacd2d34d4ca0df5658ffc10398133 (diff)
Merge "config_functest.py : bugfix: removed "sudo" from installing rally command JIRA: FUNCTEST-10"
-rw-r--r--testcases/config_functest.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/testcases/config_functest.py b/testcases/config_functest.py
index b862ba72d..48eb279be 100644
--- a/testcases/config_functest.py
+++ b/testcases/config_functest.py
@@ -222,9 +222,7 @@ def install_rally():
logger.debug("Executing %s./install_rally.sh..." %RALLY_REPO_DIR)
install_script = RALLY_REPO_DIR + "install_rally.sh"
- cmd = 'sudo ' + install_script
- functest_utils.execute_command(cmd,logger)
- #subprocess.call(['sudo', install_script])
+ functest_utils.execute_command(install_script,logger)
logger.debug("Creating Rally environment...")
cmd = "rally deployment create --fromenv --name=opnfv-arno-rally"