diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2015-10-21 11:53:31 +0200 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2015-10-21 11:53:31 +0200 |
commit | 3a017c57f74c35cde137030bc479727ec5f295a5 (patch) | |
tree | 00da469a91e30d02b6d1e5e708d6209654b32bea /testcases/config_functest.py | |
parent | 62b213816e46d66125904be73bad2c3ebca09c3b (diff) |
Removed ODL create_env from config_functest.py
Since create_env script in ODL suite is not longer needed for ODL tests
because we have the libraries already installed in the docker
container, this is not needed any more.
Change-Id: I33a23c3acc0d931f6560f7b3a1d2054e5d277025
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'testcases/config_functest.py')
-rwxr-xr-x | testcases/config_functest.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/testcases/config_functest.py b/testcases/config_functest.py index 507e24696..c509d3d12 100755 --- a/testcases/config_functest.py +++ b/testcases/config_functest.py @@ -89,13 +89,6 @@ def action_start(): logger.debug("Cleaning possible functest environment leftovers.") action_clean() - - logger.info("Installing ODL environment...") - if not install_odl(): - logger.error("There has been a problem while installing Robot.") - action_clean() - exit(-1) - logger.info("Starting installation of functest environment") logger.info("Installing Rally...") if not install_rally(): @@ -308,16 +301,6 @@ def check_rally(): return False -def install_odl(): - cmd = "chmod +x " + ODL_DIR + "start_tests.sh" - functest_utils.execute_command(cmd,logger) - cmd = "chmod +x " + ODL_DIR + "create_venv.sh" - functest_utils.execute_command(cmd,logger) - cmd = ODL_DIR + "create_venv.sh" - functest_utils.execute_command(cmd,logger) - return True - - def create_glance_image(path,name,disk_format): """ |