Skip to content

Commit

Permalink
Merge pull request #820 from danicheg/fix-#819
Browse files Browse the repository at this point in the history
Mark "reliably handle multipart requests" test flaky
  • Loading branch information
danicheg authored Jul 16, 2023
2 parents 29786c3 + f5a757e commit 960d433
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ class BlazeServerSuite extends CatsEffectSuite {

override val munitIOTimeout: Duration = 10.seconds

// allow flaky tests on CI
override def munitFlakyOK: Boolean = sys.env.contains("CI")

override implicit lazy val munitIoRuntime: IORuntime = {
val TestScheduler: ScheduledExecutorService = {
val s =
Expand Down Expand Up @@ -177,7 +180,7 @@ class BlazeServerSuite extends CatsEffectSuite {
getStatus(server, "/never").assertEquals(Status.ServiceUnavailable)
}

blazeServer.test("reliably handle multipart requests") { server =>
blazeServer.test("reliably handle multipart requests".flaky) { server =>
val body =
"""|--aa
|server: Server, Content-Disposition: form-data; name="a"
Expand Down

0 comments on commit 960d433

Please sign in to comment.