Build: Setup gradle.test-retry plugin for all test tasks in the project
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
|
||||
apply(plugin = "org.gradle.test-retry")
|
||||
|
||||
tasks.withType<Test>().configureEach {
|
||||
configure<org.gradle.testretry.TestRetryTaskExtension> {
|
||||
maxRetries.set(3)
|
||||
maxFailures.set(20)
|
||||
failOnPassedAfterRetry.set(false)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user