-
Notifications
You must be signed in to change notification settings - Fork 357
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
test: increase timeouts for running experiments on k8s after env split #9530
Conversation
✅ Deploy Preview for determined-ui 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 #9530 +/- ##
==========================================
- Coverage 49.28% 49.28% -0.01%
==========================================
Files 1242 1242
Lines 161477 161477
Branches 2868 2867 -1
==========================================
- Hits 79585 79584 -1
- Misses 81720 81721 +1
Partials 172 172
Flags with carried forward coverage won't be shown. Click here to find out more. |
@@ -17,8 +17,8 @@ def __init__(self) -> None: | |||
|
|||
# Verify we have pulled our image. | |||
# TODO this won't work if we have multiple nodes. | |||
utils.wait_for_command_state(sess, utils.run_command(sess, 0, slots=0), "TERMINATED", 300) | |||
utils.wait_for_command_state(sess, utils.run_command(sess, 0, slots=1), "TERMINATED", 300) | |||
utils.wait_for_command_state(sess, utils.run_command(sess, 0, slots=0), "TERMINATED", 600) |
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.
nit (non-blocking): Would it be worth while to define this timeout duration as a constant?
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.
Looks great!
Ticket
Description
Fix flakey test https://app.circleci.com/pipelines/github/determined-ai/determined/57030/workflows/987af866-5aed-4ff1-825d-1c7dcff5deee/jobs/2681147
Images got a lot larger after framework split so increase timeout.
Test Plan
ci passes
Checklist
docs/release-notes/
.See Release Note for details.