Skip to content

Commit 20856c5

Browse files
committed
Remove debug output and update AGENTS.md for Java 21 tests
- Remove test doFirst block that printed JDK version - Add testWithJava21 exclusion to AGENTS.md test command
1 parent 1ef99fa commit 20856c5

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ This file provides context for AI assistants working with this codebase.
77
When running tests, exclude the Java version-specific test tasks to avoid failures:
88

99
```bash
10-
./gradlew test -x testWithJava17 -x testWithJava11 -x testng
10+
./gradlew test -x testWithJava21 -x testWithJava17 -x testWithJava11 -x testng
1111
```

build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -391,12 +391,6 @@ tasks.register('testWithJava11', Test) {
391391

392392
}
393393

394-
test {
395-
doFirst {
396-
println "Running tests with JDK ${System.getProperty('java.version')}"
397-
}
398-
}
399-
400394
test.dependsOn testWithJava21
401395
test.dependsOn testWithJava17
402396
test.dependsOn testWithJava11

0 commit comments

Comments
 (0)