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

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


The following commit(s) were added to refs/heads/master by this push:
     new abae08bc36 try to make test more useful locally
abae08bc36 is described below

commit abae08bc3645afa4ed3f1835238bed46899506b7
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