Conversation
…the aggregate result jobs - Fold the `client` Backend IT shard into `others`. Both are short, and the merged shard still finishes before the slowest build shard, so PR feedback time is unchanged while each backend runs one job less. - Remove `build-result` and `BackendIT-result`. No branch protection rule requires them, so they only added checks.
This was referenced Sep 27, 2026
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.
What changes were proposed in this pull request?
Reuse the selected relational database backend for all test-template methods in a test class.
Why are the changes needed?
Core database tests currently recreate the relational backend and schema for nearly every test-template invocation, even though the database server is already shared. This dominates lane runtime.
In the matched H2 run, this change reduced backend initialization from 460 to 48 while preserving the exact 519-test identity multiset.
Fix: #6505
Depends on: #13517
Related to: #13515
Does this PR introduce any user-facing change?
No. The fixture APIs, isolation annotations, and lifecycle changes are test-only.
How was this patch tested?
./gradlew :core:spotlessApply :integration-test-common:spotlessApply./gradlew :core:coreUnitTest -PskipDockerTests=false./gradlew :core:coreH2Test -PskipDockerTests=false22844eb5cc3bf4e6a0d85f494bb0f4a4510e2be6a3451213ac2b5f32f382f035python3 -B -m unittest discover -s dev/ci/tests -p 'test_core_test_identity.py'MySQL and PostgreSQL timing evidence will be appended after an exclusive Docker-host validation window.