-
Notifications
You must be signed in to change notification settings - Fork 54
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
🌱 upgrade test: wait until first reconcile completes after upgrade #1045
🌱 upgrade test: wait until first reconcile completes after upgrade #1045
Conversation
Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
✅ Deploy Preview for olmv1 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1045 +/- ##
=======================================
Coverage 73.46% 73.46%
=======================================
Files 32 32
Lines 1986 1986
=======================================
Hits 1459 1459
Misses 368 368
Partials 159 159
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
/lgtm
foundCount := 0 | ||
for _, substring := range substrings { | ||
if strings.Contains(line, substring) { | ||
foundCount++ | ||
} | ||
} | ||
if foundCount == len(substrings) { |
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 feel like this could be done with a regexp
…rator-framework#1045) Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
…rator-framework#1045) Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
Description
After the upgrade, make sure reconcile actually completes for the ClusterExtension before we being the post-upgrade checks and tests.
Reviewer Checklist