Cut down on integration test suites#4123
Merged
Gedochao merged 2 commits intoVirtusLab:mainfrom Feb 12, 2026
Merged
Conversation
- Scala 2.12 and 2.13 suites will now only run on JVM and Linux - Scala 3.3 LTS suites will now only run on JVM, Linux, MacOS Aarch64 and Windows
- `*-1` (group 1: default Scala) becomes `*-default` - `*-2` (group 2: Scala 2.13) becomes `*-scala-2-13` - `*-3` (group 3: Scala 2.12) becomes `*-scala-2-12` - `*-4` (group 4: Scala 3 LTS) becomes `*-lts` - `*-5` (group 5: Scala 3 Next RC) becomes `*-rc` - `*macos-m1*` becomes `macos-arm64`
327041f to
e6b6bd9
Compare
tgodzik
approved these changes
Feb 10, 2026
Member
tgodzik
left a comment
There was a problem hiding this comment.
Thanks! LGTM Let me know when to update (don't want to block other PRs)
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.
Integration test suites grow in size and become increasingly flaky, making our CI sluggish and unresponsive.
While there is a bunch of improvements that could be done around the tests themselves, I do now believe entire suites are no longer worth running.
Specifically:
All test suites will still run on the JVM and native Linux launchers (which have the highest availability in the action runners' pool, and thus are not a problem, while still providing the coverage).
Additionally, all integration test suites got renamed in an informative manner:
*-1(group 1: default Scala) becomes*-default*-2(group 2: Scala 2.13) becomes*-scala-2-13*-3(group 3: Scala 2.12) becomes*-scala-2-12*-4(group 4: Scala 3 LTS) becomes*-lts*-5(group 5: Scala 3 Next RC) becomes*-rc*macos-m1*becomesmacos-arm64@tgodzik this will require adjusting the CI requirements for merging PRs, but should increase readability 😅
#shouldHaveDoneThisAgesAgo