aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2021-07-07 15:23:36 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2021-07-07 15:24:38 +0200
commiteaf85c5e5d46738736d24636d2606e34234585d8 (patch)
treea79b1e2383120af5d11e4b9361d01fa379236da4
parent146adf9a188d77d092fca0eb0a7328d4750f2f1d (diff)
Print cnf_testsuite console on exceptions
Change-Id: I3c20993e1cbb644546ac89a8b4b7d1cfd98b0a80 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit f6d5010cd34db6cd639a7fcf5b6183aa117acacf)
-rw-r--r--functest_kubernetes/cnf_conformance/conformance.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/functest_kubernetes/cnf_conformance/conformance.py b/functest_kubernetes/cnf_conformance/conformance.py
index 0a74ccf6..13268e24 100644
--- a/functest_kubernetes/cnf_conformance/conformance.py
+++ b/functest_kubernetes/cnf_conformance/conformance.py
@@ -100,6 +100,10 @@ class CNFConformance(testcase.TestCase):
try:
self.setup()
self.run_conformance(**kwargs)
+ except subprocess.CalledProcessError as exc:
+ self.__logger.exception(
+ "Can not run CNT Conformance: \n%s\n%s\n",
+ " ".join(exc.cmd), exc.output.decode("utf-8"))
except Exception: # pylint: disable=broad-except
self.__logger.exception("Can not run CNF Conformance")
self.stop_time = time.time()