Skip to content

Commit

Permalink
♻️ Increase eventually timeouts due to slow runners
Browse files Browse the repository at this point in the history
  • Loading branch information
elgohr committed Dec 25, 2023
1 parent b3a5e30 commit 04c4a4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions localstack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func TestWithTimeoutAfterStartup(t *testing.T) {
}
}
return true
}, time.Minute, 200*time.Millisecond, "image is still running but should be terminated")
}, 5*time.Minute, 200*time.Millisecond, "image is still running but should be terminated")
}

func TestWithLabels(t *testing.T) {
Expand Down Expand Up @@ -277,7 +277,7 @@ func TestLocalStackWithIndividualServicesOnContext(t *testing.T) {
_ = res.Body.Close()
}()
return err != nil
}, time.Minute, 300*time.Millisecond)
}, 5*time.Minute, 300*time.Millisecond)
})
}
}
Expand Down Expand Up @@ -308,7 +308,7 @@ func TestLocalStackWithIndividualServices(t *testing.T) {
_ = res.Body.Close()
}()
return err != nil
}, time.Minute, 300*time.Millisecond)
}, 5*time.Minute, 300*time.Millisecond)
})
}
}
Expand Down

0 comments on commit 04c4a4d

Please sign in to comment.