This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_5_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit f59e77b42c2212ec09007b7a5e813ed3ba61b77a
Author: Paul King <[email protected]>
AuthorDate: Fri Jan 9 21:20:25 2026 +1000

    try to make test more useful locally
---
 src/test/groovy/bugs/Groovy7785.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/groovy/bugs/Groovy7785.groovy 
b/src/test/groovy/bugs/Groovy7785.groovy
index 5a7ffbdf27..ea9d60d59c 100644
--- a/src/test/groovy/bugs/Groovy7785.groovy
+++ b/src/test/groovy/bugs/Groovy7785.groovy
@@ -18,13 +18,13 @@
  */
 package bugs
 
-import groovy.test.NotYetImplemented
 import org.junit.jupiter.api.Test
+import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable
 
 import static groovy.test.GroovyAssert.assertScript
 
+@DisabledIfEnvironmentVariable(named = "CI", matches = ".*") // runs locally 
but fails in CI, more investigation needed
 final class Groovy7785 {
-    @NotYetImplemented // run well locally but fails in CI, more investigation 
needed
     @Test
     void testManyChainedMethodCalls() {
         assertScript '''

Reply via email to