WIP test-bot: parallelize dependent test#21871
Draft
GunniBusch wants to merge 1 commit intoHomebrew:mainfrom
Draft
WIP test-bot: parallelize dependent test#21871GunniBusch wants to merge 1 commit intoHomebrew:mainfrom
GunniBusch wants to merge 1 commit intoHomebrew:mainfrom
Conversation
12de736 to
68d5e26
Compare
264121e to
ece3685
Compare
ece3685 to
3025738
Compare
MikeMcQuaid
requested changes
Mar 30, 2026
Member
MikeMcQuaid
left a comment
There was a problem hiding this comment.
Hey @GunniBusch! I think this misunderstands the goal of "parallelising" here; we're not wanting to parallelise within a single GitHub Actions worker/job but to fan out to many different GitHub Actions workers/jobs.
Let me know if that doesn't make sense!
Contributor
Author
Good to know. So like my prev one. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
brew lgtm(style, typechecking and tests) with your changes locally?Info: This is WIP, and currently NOT the final version. I am opening this PR so I can use the pr to do some testing and one can see the progress.
The goal of this PR is to introduce a way to make testing dependencies parallel. Important to know is that I dont think the actual testing is the pure problem but the other steps. I sampled the timings of a lot of homebrew core dependent tests and came to this conclusion:
This shows that testing is not that slow, but the stuff like installing and such is.
So my proposed solution is to leave testing as is and just try to better balance out the pretest stuff.
I will remove WIP once my approach is final.
PS:
Unlike my previous approach using sharding, this is supposed to have a lower footprint (eg also regarding code changes)