Merge pull request #1382 from DataDog/mar-kolya/increase-test-timeout
Increase gradle test timeout
This commit is contained in:
commit
f267931794
|
@ -351,8 +351,9 @@ tasks.withType(Test).configureEach {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|
||||||
// All tests must complete within 3 minutes.
|
// All tests must complete within 15 minutes.
|
||||||
timeout = Duration.ofMinutes(3)
|
// This value is quite big because with lower values (3 mins) we were experiencing large number of false positives
|
||||||
|
timeout = Duration.ofMinutes(15)
|
||||||
|
|
||||||
// Disable all tests if skipTests property was specified
|
// Disable all tests if skipTests property was specified
|
||||||
onlyIf { !project.rootProject.hasProperty("skipTests") }
|
onlyIf { !project.rootProject.hasProperty("skipTests") }
|
||||||
|
|
Loading…
Reference in New Issue