Fix config file name setting 01/28601/1
authorJuha Kosonen <juha.kosonen@nokia.com>
Tue, 14 Feb 2017 10:16:21 +0000 (12:16 +0200)
committerJuha Kosonen <juha.kosonen@nokia.com>
Tue, 14 Feb 2017 10:16:21 +0000 (12:16 +0200)
JIRA: FUNCTEST-725

Change-Id: Ic1e6a54c2dbfb1dee5f8f6e6afd60382749bcd09
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
functest/opnfv_tests/openstack/tempest/conf_utils.py

index 03735ba..028b085 100644 (file)
@@ -111,8 +111,8 @@ def configure_tempest(deployment_dir, IMAGE_ID=None, FLAVOR_ID=None):
     Calls rally verify and updates the generated tempest.conf with
     given parameters
     """
-    conf_verifier_result = configure_verifier(deployment_dir)
-    configure_tempest_update_params(conf_verifier_result,
+    conf_file = configure_verifier(deployment_dir)
+    configure_tempest_update_params(conf_file,
                                     IMAGE_ID, FLAVOR_ID)
 
 
@@ -192,6 +192,8 @@ def configure_verifier(deployment_dir):
                      % tempest_conf_file)
         raise Exception("Tempest configuration file %s NOT found."
                         % tempest_conf_file)
+    else:
+        return tempest_conf_file
 
 
 def configure_tempest_multisite(deployment_dir):