diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-05-03 16:03:08 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-05-03 16:05:56 +0200 |
commit | 3895f9dc55fa12187844a7443ccfa26c52f16888 (patch) | |
tree | df88e4125e7c8f65a8ee1eea52579c1ce767e6c1 /functest_kubernetes | |
parent | 2ccd4f025106453451edf9680b288ee24949a47c (diff) |
Fix cnf-conformance results filename
It also decreases criteria to 1 due to massive changes (dockerd).
Change-Id: Ic420139e6355debae183a77d6b0c574801b05076
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit a025fb0ac12cd86ad4fb6dd05867fb273cdbb652)
Diffstat (limited to 'functest_kubernetes')
-rw-r--r-- | functest_kubernetes/cnf_conformance/conformance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest_kubernetes/cnf_conformance/conformance.py b/functest_kubernetes/cnf_conformance/conformance.py index 1ef42adc..be5fca8c 100644 --- a/functest_kubernetes/cnf_conformance/conformance.py +++ b/functest_kubernetes/cnf_conformance/conformance.py @@ -84,7 +84,7 @@ class CNFConformance(testcase.TestCase): output = subprocess.check_output(cmd, stderr=subprocess.STDOUT) self.__logger.info("%s\n%s", " ".join(cmd), output.decode("utf-8")) lfiles = glob.glob(os.path.join( - self.res_dir, 'results', 'cnf-testsuite-results-*.yml')) + self.res_dir, 'results', 'cnf-conformance-results-*.yml')) results = max(lfiles, key=os.path.getmtime) with open(os.path.join(self.res_dir, 'results', results)) as yfile: self.details = yaml.safe_load(yfile) |