File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,6 @@ subprojects {
185
185
186
186
retry {
187
187
failOnPassedAfterRetry.set(false )
188
- // If there are 5 failures, don't even attempt a retry
189
188
maxFailures.set(5 )
190
189
maxRetries.set(2 )
191
190
}
@@ -227,6 +226,12 @@ subprojects {
227
226
systemProperty(" testDataPath" , project.rootDir.toPath().resolve(" testdata" ).toString())
228
227
229
228
mustRunAfter(tasks.test)
229
+
230
+ retry {
231
+ failOnPassedAfterRetry.set(false )
232
+ maxFailures.set(5 )
233
+ maxRetries.set(2 )
234
+ }
230
235
}
231
236
232
237
project.plugins.withId(" org.jetbrains.intellij" ) {
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ tasks.register<Test>("uiTestCore") {
60
60
// uiTestCore needs its own version of this since it's not part of normal test tasks
61
61
retry {
62
62
failOnPassedAfterRetry.set(false )
63
- // If there are 5 failures, don't even attempt a retry
64
63
maxFailures.set(5 )
65
64
maxRetries.set(2 )
66
65
}
You can’t perform that action at this time.
0 commit comments