Skip to content

Commit acbf89e

Browse files
committed
adding increase in timing
1 parent f6d5083 commit acbf89e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/krkn_lib/tests/test_krkn_kubernetes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def test_pod_shell(self):
105105
shell = self.lib_k8s.get_pod_shell("fedtools", namespace)
106106
self.assertEqual(shell, "bash")
107107

108-
def test_exec_command_on_node(self):
108+
def test_command_on_node(self):
109109
try:
110110
response = self.lib_k8s.exec_command_on_node(
111111
"kind-control-plane",
@@ -820,7 +820,7 @@ def test_exists_path_in_pod(self):
820820
self.deploy_namespace(namespace, [])
821821
self.deploy_fedtools(namespace=namespace)
822822
count = 0
823-
MAX_RETRIES = 5
823+
MAX_RETRIES = 10
824824
while not self.lib_k8s.is_pod_running("fedtools", namespace):
825825
if count > MAX_RETRIES:
826826
self.assertFalse(True, "container failed to become ready")

0 commit comments

Comments
 (0)