-
-
Notifications
You must be signed in to change notification settings - Fork 719
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
CI job running tests with queuing on #6989
Merged
Merged
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
e6a15ba
add config to coschedule tests
gjoseph92 0f9034a
add `oversaturate_only` mark
gjoseph92 9acf6f0
`test_scheduler_reschedule` is oversaturate_only
gjoseph92 c6eb5d1
fix `test_steal_twice`
gjoseph92 5570df3
update `test_steal_reschedule_reset_in_flight_occupancy`
gjoseph92 2e6f9a2
fix `test_ProcessingHistogram`
gjoseph92 54c2a32
fix `test_close_async_task_handles_cancellation`
gjoseph92 40645d9
fix `test_close_while_executing`
gjoseph92 e31c7a4
fix `test_TaskState__to_dict`
gjoseph92 175e55a
fix `test_pause_while_spilling`
gjoseph92 611a13c
skip `test_target_duration`
gjoseph92 1327d6a
As GitHub action
gjoseph92 31a0070
skip flaky tests for now
gjoseph92 ddb2bbf
match name order of queue jobs to others
gjoseph92 8a880fd
set worker-saturation env var in test step
gjoseph92 d166e1a
driveby: fix old var name
gjoseph92 7b52bed
remove use of `oversaturate_only` mark
gjoseph92 40a8a8e
Revert "add `oversaturate_only` mark"
gjoseph92 56f4dab
Merge remote-tracking branch 'upstream/main' into queuing-on-ci-job
gjoseph92 d14f947
Fix test workflow
gjoseph92 33e4995
Update test report script
gjoseph92 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
) | ||
|
||
|
||
@pytest.mark.oversaturate_only | ||
@gen_cluster( | ||
client=True, | ||
nthreads=[("", 1)] * 2, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 think this renaming will break some logic in our test report generation.
distributed/continuous_integration/scripts/test_report.py
Lines 146 to 152 in acf6078
distributed/continuous_integration/scripts/test_report.py
Lines 353 to 357 in acf6078
I introduced this in #6837
Worst case, we remove the more specific job URL again (we knew from the start this is very brittle)
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.
see https://github.com/dask/distributed/pull/6837/files#r939182529
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 don't think this should block this PR