Skip to content

Commit

Permalink
Backward compatibility tests: add retries (#2978)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi authored Jan 7, 2022
1 parent 0fdf241 commit 0c900c8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/backward-compat/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
plugins {
id 'groovy'
id 'com.adarshr.test-logger'
id 'org.gradle.test-retry'
}

subprojects {
Expand All @@ -29,6 +30,8 @@ subprojects {

apply plugin: 'groovy'
apply plugin: 'com.adarshr.test-logger'
apply plugin: 'org.gradle.test-retry'


dependencies {
testImplementation 'org.codehaus.groovy:groovy-all:2.4.15'
Expand All @@ -43,6 +46,10 @@ subprojects {

test {
dependsOn(":tests:docker-images:buildImages")
retry {
maxFailures = 10
maxRetries = 5
}
}

}
Expand Down

0 comments on commit 0c900c8

Please sign in to comment.