Skip to content

Commit

Permalink
chore: start timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
  • Loading branch information
jeroiraz committed Nov 21, 2022
1 parent aad86cd commit 99a43c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -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."
Expand Down Expand Up @@ -171,7 +171,7 @@ test {

test.dependsOn immudbStart

test.finalizedBy([jacocoTestReport, immudbStop])
test.finalizedBy([immudbStop])

task integrationTest(type: Test) {
testClassesDirs = sourceSets.integrationTest.output.classesDirs
Expand Down

0 comments on commit 99a43c8

Please sign in to comment.