Rally and Tempest pre-installed in the Docker image.
[functest.git] / testcases / VIM / OpenStack / CI / libraries / run_tempest.py
index 2946691..04d8e86 100644 (file)
@@ -217,7 +217,7 @@ def configure_tempest():
 
 
     # Copy tempest.conf to /home/opnfv/functest/results/tempest/
-    print shutil.copyfile(tempest_conf_file,TEMPEST_RESULTS_DIR+'/tempest.conf')
+    shutil.copyfile(tempest_conf_file,TEMPEST_RESULTS_DIR+'/tempest.conf')
     return True
 
 
@@ -228,7 +228,7 @@ def run_tempest(OPTION):
     # :return: void
     #
     logger.info("Starting Tempest test suite: '%s'." % OPTION)
-    cmd_line = "rally verify start "+OPTION
+    cmd_line = "rally verify start " + OPTION + " --system-wide"
     logger.debug('Executing command : {}'.format(cmd_line))
 
     CI_DEBUG = os.environ.get("CI_DEBUG")