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

jdaugherty pushed a commit to branch grails-geb
in repository https://gitbox.apache.org/repos/asf/grails-core.git

commit 0fb6c3bec37d3a22b10b5d72312de9c4d520beaa
Author: James Daugherty <[email protected]>
AuthorDate: Sun Apr 20 18:24:04 2025 -0400

    add skipTests option to the gradle builds
---
 grails-gradle/gradle/test-config.gradle | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/grails-gradle/gradle/test-config.gradle 
b/grails-gradle/gradle/test-config.gradle
index de78d2be22..36f8af0171 100644
--- a/grails-gradle/gradle/test-config.gradle
+++ b/grails-gradle/gradle/test-config.gradle
@@ -25,6 +25,10 @@ tasks.withType(Test).configureEach {
             return false
         }
 
+        if (project.hasProperty('skipTests')) {
+            return false
+        }
+
         true
     }
 

Reply via email to