Skip to content

Commit

Permalink
bump timeout on integration tests to 10min
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Sep 15, 2024
1 parent aa117d0 commit 9ecb871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testkit/src/mill/testkit/UtestExampleTestSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object UtestExampleTestSuite extends TestSuite {
test("exampleTest") {
Retry(
count = if (sys.env.contains("CI")) 1 else 0,
timeoutMillis = 5.minutes.toMillis
timeoutMillis = 10.minutes.toMillis
) {
ExampleTester.run(
clientServerMode,
Expand Down
2 changes: 1 addition & 1 deletion testkit/src/mill/testkit/UtestIntegrationTestSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ abstract class UtestIntegrationTestSuite extends utest.TestSuite with Integratio
): Future[Any] = {
Retry(
count = if (sys.env.contains("CI")) 1 else 0,
timeoutMillis = 5.minutes.toMillis
timeoutMillis = 10.minutes.toMillis
) {
super.utestWrap(path, runBody)
}
Expand Down

0 comments on commit 9ecb871

Please sign in to comment.