Fix CNF TestSuite's log level 72/74372/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Thu, 21 Dec 2023 08:26:17 +0000 (09:26 +0100)
committerCédric Ollivier <cedric.ollivier@orange.com>
Thu, 21 Dec 2023 08:26:17 +0000 (09:26 +0100)
Change-Id: I9a7e1a9d17fd575b7e6077d8ccf5dd5d1a259717
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
functest_kubernetes/cnf_conformance/conformance.py

index 1b357d8..a937ca4 100644 (file)
@@ -60,7 +60,7 @@ class CNFConformance(testcase.TestCase):
         if os.path.exists(os.path.join(self.src_dir, "results")):
             shutil.rmtree(os.path.join(self.src_dir, "results"))
         os.chdir(self.src_dir)
-        cmd = ['cnf-testsuite', 'setup', '-l DEBUG']
+        cmd = ['cnf-testsuite', 'setup', '-l', 'debug']
         try:
             output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
         except subprocess.CalledProcessError as exc:
@@ -71,7 +71,7 @@ class CNFConformance(testcase.TestCase):
             return False
         self.__logger.info("%s\n%s", " ".join(cmd), output.decode("utf-8"))
         cmd = ['cnf-testsuite', 'cnf_setup',
-               'cnf-config=cnf-testsuite.yml', '-l DEBUG']
+               'cnf-config=cnf-testsuite.yml', '-l', 'debug']
         try:
             output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
         except subprocess.CalledProcessError as exc:
@@ -86,7 +86,7 @@ class CNFConformance(testcase.TestCase):
     def run_conformance(self, **kwargs):
         """Run CNF Conformance"""
         cmd = ['cnf-testsuite', kwargs.get("tag", self.default_tag),
-               '-l DEBUG']
+               '-l', 'debug']
         output = subprocess.run(
             cmd, stderr=subprocess.STDOUT, stdout=subprocess.PIPE,
             check=False).stdout