aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
Diffstat (limited to 'functest')
-rw-r--r--functest/ci/testcases.yaml1
-rw-r--r--functest/opnfv_tests/openstack/rally/rally.py4
2 files changed, 4 insertions, 1 deletions
diff --git a/functest/ci/testcases.yaml b/functest/ci/testcases.yaml
index 766178617..eaada3a9f 100644
--- a/functest/ci/testcases.yaml
+++ b/functest/ci/testcases.yaml
@@ -305,6 +305,7 @@ tiers:
- 'test_update_network_provider_physical_network'
- 'test_update_network_provider_segmentation_id'
- 'network.test_agents_rbac'
+ - 'test_list_metadef_namespaces'
-
case_name: neutron_trunk
diff --git a/functest/opnfv_tests/openstack/rally/rally.py b/functest/opnfv_tests/openstack/rally/rally.py
index 61352c1ed..06bb85fcd 100644
--- a/functest/opnfv_tests/openstack/rally/rally.py
+++ b/functest/opnfv_tests/openstack/rally/rally.py
@@ -431,7 +431,7 @@ class RallyBase(singlevm.VmReady2):
LOGGER.debug('task_id : %s', task_id)
if task_id is None:
LOGGER.error("Failed to retrieve task_id")
- LOGGER.error("Result:\n%s", output)
+ LOGGER.error("Result:\n%s", output.decode("utf-8"))
raise Exception("Failed to retrieve task id")
self._save_results(test_name, task_id)
@@ -796,6 +796,8 @@ class RallyJobs(RallyBase):
task_args['floating_network'] = str(self.ext_net.name)
else:
task_args['floating_network'] = ''
+ task_args['image_name'] = str(self.image.name)
+ task_args['flavor_name'] = str(self.flavor.name)
return task_args
@staticmethod