aboutsummaryrefslogtreecommitdiffstats
path: root/functest_kubernetes/cnf_conformance/conformance.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2025-01-27 14:47:19 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2025-01-27 14:48:33 +0100
commit577fdf721fa12582926a00e830f98bb9278c75c4 (patch)
tree5d2cd96eae26df2317ea4cba2fd373d52fb2c18d /functest_kubernetes/cnf_conformance/conformance.py
parent8e626be22b5dc15fd67d46fcdcc0f15c738fff7d (diff)
Remove useless call to self.corev1.list_namespace
It should have been removed in the previous change stopping creating namespaces. Change-Id: I6322ccc5206b6fac074bf922c5b6cd59a2f7b10d Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit cfc203dc22b8cf4e6088f5e21119f5bab94ccf9d)
Diffstat (limited to 'functest_kubernetes/cnf_conformance/conformance.py')
-rw-r--r--functest_kubernetes/cnf_conformance/conformance.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/functest_kubernetes/cnf_conformance/conformance.py b/functest_kubernetes/cnf_conformance/conformance.py
index bd98e0e4..ab264b34 100644
--- a/functest_kubernetes/cnf_conformance/conformance.py
+++ b/functest_kubernetes/cnf_conformance/conformance.py
@@ -63,7 +63,6 @@ class CNFConformance(testcase.TestCase):
"""Implement initialization and pre-reqs steps"""
if os.path.exists(os.path.join(self.src_dir, "results")):
shutil.rmtree(os.path.join(self.src_dir, "results"))
- api_response = self.corev1.list_namespace()
os.chdir(self.src_dir)
cmd = ['cnf-testsuite', 'setup', '-l', 'debug']
try: