From b10d3c5a8dfcd1f066f1513389cb2143acefbe63 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Mon, 17 Oct 2022 09:09:54 +0200 Subject: Update cnf_testsuite v0.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It now runs cert (replacing workload) It downgrades msg to warning as cnf_testsuite now returns non 0 values. Change-Id: I0ce4f201065bf601111d7154cb4afa31e9a4666c Signed-off-by: Cédric Ollivier (cherry picked from commit 4338a2532600e659179335a5f5f71ab15f83f8d7) --- functest_kubernetes/cnf_conformance/conformance.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'functest_kubernetes/cnf_conformance/conformance.py') diff --git a/functest_kubernetes/cnf_conformance/conformance.py b/functest_kubernetes/cnf_conformance/conformance.py index e3e3fe0d..a248928e 100644 --- a/functest_kubernetes/cnf_conformance/conformance.py +++ b/functest_kubernetes/cnf_conformance/conformance.py @@ -38,7 +38,7 @@ class CNFConformance(testcase.TestCase): src_dir = '/src/cnf-testsuite' bin_dir = '/usr/local/bin' - default_tag = 'workload' + default_tag = 'cert' __logger = logging.getLogger(__name__) @@ -110,15 +110,15 @@ class CNFConformance(testcase.TestCase): self.setup() self.run_conformance(**kwargs) except subprocess.CalledProcessError as exc: - self.__logger.exception( + self.__logger.warning( "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.__logger.warning("CNF Conformance exited with errors") self.stop_time = time.time() def clean(self): - for clean_cmd in ['uninstall_cri_tools', 'uninstall_falco', + for clean_cmd in ['uninstall_falco', 'cnf_cleanup']: cmd = ['cnf-testsuite', clean_cmd, 'cnf-config=cnf-testsuite.yml'] -- cgit 1.2.3-korg