Skip to content

Commit

Permalink
Increase timeout for StopRuntime/KillRuntime tests
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Nov 6, 2024
1 parent acd2690 commit c49623b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ private constructor(

// Log environment
writeEnvironmentReport(testReportDir)

LOG.info("Docker environment up and running")
}

private fun configureLogger(testReportDir: String) {
Expand Down Expand Up @@ -364,6 +366,7 @@ private constructor(
teardownAdditionalContainers()
teardownServices()
network.close()
LOG.info("Docker environment cleaned up")
}

internal fun getContainerPort(hostName: String, port: Int): Int {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class KillRuntime {
}
}

@Timeout(value = 30, unit = TimeUnit.SECONDS)
@Timeout(value = 60, unit = TimeUnit.SECONDS)
@Test
fun startAndKillRuntimeRetainsTheState(
@InjectClient ingressClient: Client,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class StopRuntime {
}
}

@Timeout(value = 30, unit = TimeUnit.SECONDS)
@Timeout(value = 60, unit = TimeUnit.SECONDS)
@Test
fun startAndStopRuntimeRetainsTheState(
@InjectClient ingressClient: Client,
Expand Down

0 comments on commit c49623b

Please sign in to comment.