From: Cédric Ollivier Date: Wed, 7 Jul 2021 13:23:36 +0000 (+0200) Subject: Print cnf_testsuite console on exceptions X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F63%2F72763%2F1;p=functest-kubernetes.git Print cnf_testsuite console on exceptions Change-Id: I3c20993e1cbb644546ac89a8b4b7d1cfd98b0a80 Signed-off-by: Cédric Ollivier (cherry picked from commit f6d5010cd34db6cd639a7fcf5b6183aa117acacf) --- 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()