Skip to content

Commit

Permalink
Merge branch '1.12.x' into 1.13.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatan-ivanov committed Jul 12, 2024
2 parents aeadeab + bb26aa1 commit 56d955e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,6 @@ subprojects {
useJUnitPlatform {
excludeTags 'docker'
}

develocity.testRetry {
maxFailures = 5
maxRetries = 3
}
}

task dockerTest(type: Test) {
Expand All @@ -192,8 +187,12 @@ subprojects {
}
}

project.tasks.withType(Test) { Test testTask ->
testTask.testLogging.exceptionFormat = 'full'
tasks.withType(Test).configureEach {
testLogging.exceptionFormat = 'full'
develocity.testRetry {
maxFailures = 5
maxRetries = 3
}
}

license {
Expand Down

0 comments on commit 56d955e

Please sign in to comment.