Skip to content

Commit

Permalink
increased timeout in test_pod_exists (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsebastiani authored Oct 31, 2023
1 parent 50c28d4 commit d1b1d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/krkn_lib/tests/test_krkn_kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def test_check_if_pod_exists(self):
name = "test-name-" + self.get_random_string(10)
self.deploy_namespace(namespace, [])
self.deploy_fedtools(namespace=namespace, name=name)
self.wait_pod(name, namespace, timeout=120)
self.wait_pod(name, namespace, timeout=240)
self.assertTrue(self.lib_k8s.check_if_pod_exists(name, namespace))
self.assertFalse(
self.lib_k8s.check_if_pod_exists(
Expand Down

0 comments on commit d1b1d31

Please sign in to comment.