Merged
Conversation
Contributor
Test ReportTest Results
Code Coverage (Java 25)
|
Remove automatic dependencies that made `./gradlew test` run on all JVMs (11, 17, 21, 25) and `check` pull in testng. Now `test` and `check` only run on Java 25 by default. Other JVM versions are still available via explicit tasks (testWithJava11, testWithJava17, etc.) used by CI matrix. Simplifies CI workflow commands by removing all -x exclusion flags. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
e26794d to
5e2f2da
Compare
The check matrix entry runs static checks only (errorprone, etc.). Tests run in separate parallel matrix jobs. The Gradle check lifecycle depends on test, so we still need to exclude test/testng here. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
781c86e to
06ff846
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.
Summary
test.dependsOn testWithJava{11,17,21}andcheck.dependsOn testngfrombuild.gradle./gradlew testnow only runs tests on Java 25 (no more-xflags needed locally)testWithJava11,testWithJava17, etc.) used by CI matrix jobs-xexclusion flags frommaster.ymlandpull_request.ymlworkflowsTest plan
./gradlew testonly runs Java 25 tests./gradlew checkno longer pulls in testng🤖 Generated with Claude Code