diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-07-07 15:23:36 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-07-07 15:23:36 +0200 |
commit | f6d5010cd34db6cd639a7fcf5b6183aa117acacf (patch) | |
tree | b5ec524e3376c4aafb7acb65d9eb334d34d3b7df /functest_kubernetes/cnf_conformance/conformance.py | |
parent | 34b964032658014ed7d788c2fe1ed9e453f18d50 (diff) |
Print cnf_testsuite console on exceptions
Change-Id: I3c20993e1cbb644546ac89a8b4b7d1cfd98b0a80
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest_kubernetes/cnf_conformance/conformance.py')
-rw-r--r-- | functest_kubernetes/cnf_conformance/conformance.py | 4 |
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() |