diff --git a/gradle/java.gradle b/gradle/java.gradle index 5f3e53061f..6eedda7a77 100644 --- a/gradle/java.gradle +++ b/gradle/java.gradle @@ -351,8 +351,9 @@ tasks.withType(Test).configureEach { useJUnitPlatform() } - // All tests must complete within 3 minutes. - timeout = Duration.ofMinutes(3) + // All tests must complete within 15 minutes. + // 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 onlyIf { !project.rootProject.hasProperty("skipTests") }