File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -173,9 +173,6 @@ jobs:
173
173
with :
174
174
develocity-access-key : ${{ secrets.GRAILS_DEVELOCITY_ACCESS_KEY }}
175
175
- name : " 🏃 Run Functional Tests"
176
- env :
177
- # Make Geb tests more resilient in slow CI environments
178
- JAVA_TOOL_OPTIONS : -Dgrails.geb.atCheckWaiting.enabled=true
179
176
run : >
180
177
./gradlew bootJar check
181
178
--continue
Original file line number Diff line number Diff line change @@ -113,6 +113,15 @@ tasks.withType(Test).configureEach { Test task ->
113
113
if (System . getProperty(' debug.tests' )) {
114
114
task. jvmArgs + = debugArguments
115
115
}
116
+
117
+ // Make Geb tests more resilient in slow CI environments
118
+ systemProperty(
119
+ ' grails.geb.atCheckWaiting.enabled' ,
120
+ System . getProperty(
121
+ ' grails.geb.atCheckWaiting.enabled' ,
122
+ System . getenv(' CI' )
123
+ )
124
+ )
116
125
}
117
126
118
127
tasks. named(' groovydoc' ). configure {
You can’t perform that action at this time.
0 commit comments