Skip to content

Commit

Permalink
Increase timeout for Gradle smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-tkachenko-datadog committed Nov 26, 2024
1 parent f1439c0 commit d9e656e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dd-smoke-tests/gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import java.time.Duration
import java.time.temporal.ChronoUnit

plugins {
id "com.github.johnrengelman.shadow"
}
Expand All @@ -14,5 +17,9 @@ test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}

// overriding the default timeout of 9 minutes set in configure_tests.gradle,
// as Gradle smoke tests might run for a longer duration
timeout = Duration.of(15, ChronoUnit.MINUTES)
}

0 comments on commit d9e656e

Please sign in to comment.