-
Notifications
You must be signed in to change notification settings - Fork 915
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 tests for resume scenario suggestion to parallel runner #4417
Conversation
Signed-off-by: Merel Theisen <[email protected]>
* Try fix flaky thread runner test Signed-off-by: Merel Theisen <[email protected]> * Fix dict into list for iteration Signed-off-by: Merel Theisen <[email protected]> --------- Signed-off-by: Merel Theisen <[email protected]>
tests/runner/test_thread_runner.py
Outdated
@@ -311,7 +311,7 @@ def test_stricter_suggest_resume_scenario( | |||
""" | |||
test_pipeline = two_branches_crossed_pipeline_variable_inputs | |||
|
|||
nodes = {n.name: n for n in test_pipeline.nodes} | |||
nodes = {n.name: n for n in list(test_pipeline.nodes)} |
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.
Shouldn't test_pipeline.nodes
already return a list?
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 was trying to fix the issue that this test is flaky because of an iterable changing size. test_pipeline
is changed below so I thought this might solve it. But I'll move this to my other PR for fixing the tests.
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.
Thank you, @merelcht!
Implementation looks good to me, left one minor question.
Signed-off-by: Merel Theisen <[email protected]>
Description
#1830
Development notes
The refactoring in #4353 already added the resume suggestion to ParallelRunner. This PR adds tests to check the suggestions work as expected.
Developer Certificate of Origin
We need all contributions to comply with the Developer Certificate of Origin (DCO). All commits must be signed off by including a
Signed-off-by
line in the commit message. See our wiki for guidance.If your PR is blocked due to unsigned commits, then you must follow the instructions under "Rebase the branch" on the GitHub Checks page for your PR. This will retroactively add the sign-off to all unsigned commits and allow the DCO check to pass.
Checklist
RELEASE.md
file