Skip to content

Commit

Permalink
adding increase in timing
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Nov 21, 2024
1 parent f6d5083 commit acbf89e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/krkn_lib/tests/test_krkn_kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def test_pod_shell(self):
shell = self.lib_k8s.get_pod_shell("fedtools", namespace)
self.assertEqual(shell, "bash")

def test_exec_command_on_node(self):
def test_command_on_node(self):
try:
response = self.lib_k8s.exec_command_on_node(
"kind-control-plane",
Expand Down Expand Up @@ -820,7 +820,7 @@ def test_exists_path_in_pod(self):
self.deploy_namespace(namespace, [])
self.deploy_fedtools(namespace=namespace)
count = 0
MAX_RETRIES = 5
MAX_RETRIES = 10
while not self.lib_k8s.is_pod_running("fedtools", namespace):
if count > MAX_RETRIES:
self.assertFalse(True, "container failed to become ready")
Expand Down

0 comments on commit acbf89e

Please sign in to comment.