-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use APITimeout and RetryInterval constant in tests #600
Conversation
Thanks for your PR,
To skip the vendors CIs use one of:
|
Thanks for your PR,
To skip the vendors CIs use one of:
|
Pull Request Test Coverage Report for Build 7711744357
💛 - Coveralls |
LGTM |
@@ -65,7 +66,7 @@ var _ = Describe("Operator", func() { | |||
return err | |||
} | |||
return nil | |||
}, timeout*3, interval).Should(Succeed()) | |||
}, util.APITimeout*3, util.RetryInterval).Should(Succeed()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is odd that we need it. probably related to where this test is executed.
i mean we just spin up apiserver +etcd with envtest then a simple reconcile
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO, that's something we have to fix in the future in a sepatare PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't reproduce the error this PR is fixing on my local environment, but looking at the CI, it fixes the job.
LGTM
No description provided.