Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions dd-smoke-tests/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,5 @@ test {
// propagate proxy URL to tests, to then propagate it to nested Gradle builds
environment "MAVEN_REPOSITORY_PROXY", project.property("mavenRepositoryProxy")
}

// Overriding the default timeout as Gradle smoke tests might run for a longer duration.
timeout = Duration.of(20, ChronoUnit.MINUTES)
}

4 changes: 2 additions & 2 deletions gradle/configure_tests.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ tasks.withType(Test).configureEach {
exclude("**/*ForkedTest*")
}

// Set test timeout for 15 minutes. Default job timeout is 1h (configured on CI level).
timeout = Duration.of(15, ChronoUnit.MINUTES)
// Set test timeout for 20 minutes. Default job timeout is 1h (configured on CI level).
timeout = Duration.of(20, ChronoUnit.MINUTES)

check.dependsOn(it)
}
Expand Down