Skip to content

Commit

Permalink
Decreased the end-to-end startup timeout to 20 minutes
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Jordan <[email protected]>
  • Loading branch information
normanj-bitquill committed Feb 14, 2025
1 parent 3506f38 commit a0d313d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: echo "SBT_OPTS=-Xmx2G" >> $GITHUB_ENV

- name: Integ Test
run: sbt integtest/integration e2etest/test
run: sbt integtest/integration

- name: Upload test report
if: always() # Ensures the artifact is saved even if tests fail
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class EndToEndITSuite extends AnyFlatSpec with TableDrivenPropertyChecks with Be
}
}
}.start()
val completed = dockerProcess.waitFor(30, TimeUnit.MINUTES)
val completed = dockerProcess.waitFor(20, TimeUnit.MINUTES)
stopReading = true
if (!completed) {
throw new IllegalStateException("Unable to start docker cluster")
Expand Down

0 comments on commit a0d313d

Please sign in to comment.