From eab92fc81496812c614c2e4edde0c922d1509fb5 Mon Sep 17 00:00:00 2001 From: Juha Kosonen Date: Mon, 5 Mar 2018 17:17:53 +0200 Subject: Fix Rally scenario parameters representation Use printable format of string in scenario input parameters. JIRA: FUNCTEST-946 Change-Id: Ic4826506a6f030e749fecdc7f880e9f911f9c987 Signed-off-by: Juha Kosonen --- functest/opnfv_tests/openstack/rally/rally.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/functest/opnfv_tests/openstack/rally/rally.py b/functest/opnfv_tests/openstack/rally/rally.py index 7e6871490..5c7acfded 100644 --- a/functest/opnfv_tests/openstack/rally/rally.py +++ b/functest/opnfv_tests/openstack/rally/rally.py @@ -108,13 +108,13 @@ class RallyBase(testcase.TestCase): def _build_task_args(self, test_file_name): """Build arguments for the Rally task.""" task_args = {'service_list': [test_file_name]} - task_args['image_name'] = self.image_name - task_args['flavor_name'] = self.flavor_name - task_args['flavor_alt_name'] = self.flavor_alt_name - task_args['glance_image_location'] = self.GLANCE_IMAGE_PATH - task_args['glance_image_format'] = self.GLANCE_IMAGE_FORMAT - task_args['tmpl_dir'] = self.TEMPLATE_DIR - task_args['sup_dir'] = self.SUPPORT_DIR + task_args['image_name'] = str(self.image_name) + task_args['flavor_name'] = str(self.flavor_name) + task_args['flavor_alt_name'] = str(self.flavor_alt_name) + task_args['glance_image_location'] = str(self.GLANCE_IMAGE_PATH) + task_args['glance_image_format'] = str(self.GLANCE_IMAGE_FORMAT) + task_args['tmpl_dir'] = str(self.TEMPLATE_DIR) + task_args['sup_dir'] = str(self.SUPPORT_DIR) task_args['users_amount'] = self.USERS_AMOUNT task_args['tenants_amount'] = self.TENANTS_AMOUNT task_args['use_existing_users'] = False -- cgit 1.2.3-korg