From 99a43c845cb24b2ce879e145057a21cd6de33903 Mon Sep 17 00:00:00 2001 From: Jeronimo Irazabal Date: Mon, 21 Nov 2022 06:08:03 -0300 Subject: [PATCH] chore: start timeout Signed-off-by: Jeronimo Irazabal --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 2cf56fd..c21a636 100644 --- a/build.gradle +++ b/build.gradle @@ -134,7 +134,7 @@ task immudbStart { pb.command("/bin/bash", "immudb/start.sh") Process proc = pb.start() - proc.waitFor(5, TimeUnit.SECONDS) + proc.waitFor(15, TimeUnit.SECONDS) if (proc.isAlive()) { println "immudb has been started." @@ -171,7 +171,7 @@ test { test.dependsOn immudbStart -test.finalizedBy([jacocoTestReport, immudbStop]) +test.finalizedBy([immudbStop]) task integrationTest(type: Test) { testClassesDirs = sourceSets.integrationTest.output.classesDirs