diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-03-04 14:23:31 +0100 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-03-04 14:30:57 +0100 |
commit | def1634a5b8a2c8ca794fa878394234a8ebb3468 (patch) | |
tree | ad863a1155e0bb491398a5abd60503f1a7de22ac /testcases/config_functest.py | |
parent | 3f23d0c783fa0016f9aed8cd610261fdf929eba5 (diff) |
Rally and Tempest pre-installed in the Docker image.
Also, upgrade Rally to version 0.3.1
JIRA: FUNCTEST-147
Change-Id: I6aa15a7c282462058b7786c7dc7174d48c905d3a
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'testcases/config_functest.py')
-rwxr-xr-x | testcases/config_functest.py | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/testcases/config_functest.py b/testcases/config_functest.py index 21c569cb..fa58a563 100755 --- a/testcases/config_functest.py +++ b/testcases/config_functest.py @@ -55,6 +55,7 @@ RALLY_DIR = FUNCTEST_REPO + functest_yaml.get("general").get("directories").get( RALLY_REPO_DIR = functest_yaml.get("general").get("directories").get("dir_repo_rally") RALLY_INSTALLATION_DIR = functest_yaml.get("general").get("directories").get("dir_rally_inst") RALLY_RESULT_DIR = functest_yaml.get("general").get("directories").get("dir_rally_res") +TEMPEST_REPO_DIR = functest_yaml.get("general").get("directories").get("dir_repo_tempest") VPING_DIR = FUNCTEST_REPO + functest_yaml.get("general").get("directories").get("dir_vping") VIMS_TEST_DIR = functest_yaml.get("general").get("directories").get("dir_repo_vims_test") ODL_DIR = FUNCTEST_REPO + functest_yaml.get("general").get("directories").get("dir_odl") @@ -209,20 +210,12 @@ def install_rally(): if check_rally(): logger.info("Rally is already installed.") else: - logger.debug("Executing %s/install_rally.sh..." %RALLY_REPO_DIR) - install_script = RALLY_REPO_DIR + "/install_rally.sh --yes" - cmd = 'sudo ' + install_script - 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 functest_utils.execute_command(cmd,logger) - logger.debug("Installing tempest...") - cmd = "rally verify install" + logger.debug("Installing tempest from existing repo...") + cmd = "rally verify install --source " + TEMPEST_REPO_DIR + " --system-wide" functest_utils.execute_command(cmd,logger) cmd = "rally deployment check" |