-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add simple start counter test #498
Conversation
This should work in CI (assuming runners aren't reused) but will break after the first run in dev since we don't provide an easy mechanism to clean up volumes. |
} | ||
|
||
if _, _, err := t.RunExo(ctx, "init"); err != nil { | ||
return err |
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.
Since this stuff is only used in tests, it's probably perfectly fine to simply panic on error inside RunExo
.
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.
The intent was to allow people to create end to end tests where failure is expected — which becomes a bit ugly if they have to recover from panics all the time.
This is blocked on #499 |
Squashed and cherry-picked into #543 |
No description provided.