Skip to content

Commit db0df01

Browse files
test: increase timeout for :dd-java-agent:agent-ci-visibility: (#9375)
1 parent af486f2 commit db0df01

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dd-java-agent/agent-ci-visibility/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import java.time.Duration
2+
import java.time.temporal.ChronoUnit
3+
14
buildscript {
25
repositories {
36
mavenLocal()
@@ -72,3 +75,7 @@ shadowJar {
7275
jar {
7376
archiveClassifier = 'unbundled'
7477
}
78+
79+
tasks.withType(Test).configureEach {
80+
timeout = Duration.of(12, ChronoUnit.MINUTES)
81+
}

0 commit comments

Comments
 (0)