aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-06-01 10:52:05 +0200
committerCedric Ollivier <cedric.ollivier@orange.com>2019-06-01 10:01:46 +0000
commitd7b2e310f0e2b8b97382a50a8f4e8270ae4f26d0 (patch)
tree2727bcf50aa6d2d43113476c0ec82fcb51c7cf6c /functest
parent723306a2c0401539ea08a6d700ee9457e0834c0b (diff)
Decode tempest exception output (py3)
https://build.opnfv.org/ci/job/functest-opnfv-functest-smoke-latest-refstack_compute-run/30/console Change-Id: I77264525917af5f67cdecae85ef7a50439499db8 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest')
-rw-r--r--functest/opnfv_tests/openstack/refstack/refstack.py2
-rw-r--r--functest/opnfv_tests/openstack/vmtp/vmtp.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/functest/opnfv_tests/openstack/refstack/refstack.py b/functest/opnfv_tests/openstack/refstack/refstack.py
index 9c8f933e0..b2662cd68 100644
--- a/functest/opnfv_tests/openstack/refstack/refstack.py
+++ b/functest/opnfv_tests/openstack/refstack/refstack.py
@@ -48,7 +48,7 @@ class Refstack(tempest.TempestCommon):
except subprocess.CalledProcessError as cpe:
self.__logger.error(
"Exception when listing tempest tests: %s\n%s",
- cpe.cmd, cpe.output)
+ cpe.cmd, cpe.output.decode("utf-8"))
raise
finally:
os.chdir(olddir)
diff --git a/functest/opnfv_tests/openstack/vmtp/vmtp.py b/functest/opnfv_tests/openstack/vmtp/vmtp.py
index 57bc6c3ea..2fd4e089c 100644
--- a/functest/opnfv_tests/openstack/vmtp/vmtp.py
+++ b/functest/opnfv_tests/openstack/vmtp/vmtp.py
@@ -180,7 +180,8 @@ class Vmtp(singlevm.VmReady2):
status = testcase.TestCase.EX_OK
except subprocess.CalledProcessError as cpe:
self.__logger.error(
- "Exception when calling %s\n%s", cpe.cmd, cpe.output)
+ "Exception when calling %s\n%s", cpe.cmd,
+ cpe.output.decode("utf-8"))
self.result = 0
except Exception: # pylint: disable=broad-except
self.__logger.exception("Cannot run vmtp")