Collect all e2e test runs in single report#100
Merged
GrigoryPervakov merged 1 commit intomainfrom Feb 23, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request introduces Ginkgo parallelism for e2e tests to improve CI performance and consolidates all e2e test reports into a single unified report. The changes enable running e2e tests across 4 parallel processes, which should significantly reduce overall CI execution time.
Changes:
- Introduced a new
test-e2e-ciMakefile target with Ginkgo parallel sharding support using configurableGINKGO_PARALLEL_TOTALandGINKGO_PARALLEL_PROCESSparameters - Modified GitHub Actions workflow to run e2e tests across 4 parallel matrix jobs instead of 2 sequential jobs (keeper and clickhouse)
- Added a new
e2e-reportjob that consolidates all e2e and compat-e2e test reports into a single unified test report - Removed junit-report generation from local development test targets (
test-keeper-e2e,test-clickhouse-e2e)
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| Makefile | Added test-e2e-ci target with Ginkgo parallel sharding support; removed junit reports from local dev test targets |
| .github/workflows/ci.yaml | Modified e2e-test job to use 4-way matrix parallelism; changed compat-e2e-test to upload artifacts; added e2e-report job for unified reporting |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
5a13c2d to
8396e0a
Compare
8396e0a to
aff83c9
Compare
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.
Why
Should produce better reports.