We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16222fe commit 889cb35Copy full SHA for 889cb35
jmx-scraper/build.gradle.kts
@@ -70,6 +70,13 @@ tasks {
70
systemProperty("app.war.path", testWarTask.get().archiveFile.get().asFile.absolutePath)
71
72
systemProperty("gradle.project.version", "${project.version}")
73
+
74
+ develocity.testRetry {
75
+ // You can see tests that were retried by this mechanism in the collected test reports and build scans.
76
+ if (System.getenv().containsKey("CI")) {
77
+ maxRetries.set(5)
78
+ }
79
80
}
81
82
// Because we reconfigure publishing to only include the shadow jar, the Gradle metadata is not correct.
0 commit comments