Skip to content

Commit

Permalink
Bump delete org timeout in CRD tests
Browse files Browse the repository at this point in the history
Org deletion is generally a bit slow and causes CRD tests to flake
frequently.

Co-authored-by: Danail Branekov <danailster@gmail.com>
  • Loading branch information
georgethebeatle and danail-branekov committed Oct 9, 2023
1 parent 11894f7 commit 0b0433b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/crds/crds_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var _ = Describe("Using the k8s API directly", Ordered, func() {
deleteOrg := helpers.Kubectl("delete", "--ignore-not-found=true", "-n="+rootNamespace, "cforg", orgGUID)
deleteRoleBinding := helpers.Kubectl("delete", "--ignore-not-found=true", "-n="+rootNamespace, "rolebinding", bindingName)

Eventually(deleteOrg, "20s").Should(Exit(0), "deleteOrg")
Eventually(deleteOrg, "60s").Should(Exit(0), "deleteOrg")
Eventually(deleteRoleBinding, "20s").Should(Exit(0), "deleteRoleBinging")
})

Expand Down

0 comments on commit 0b0433b

Please sign in to comment.