Skip to content

Commit e2bb071

Browse files
Marks as flaky the proto server streaming test (#1327)
1 parent 24a1542 commit e2bb071

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/haskell-integration-tests/src/test/scala/integrationtest/protobuf/HaskellServerScalaClientSpec.scala

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ import scala.concurrent.duration._
3131

3232
class HaskellServerScalaClientSpec extends CatsEffectSuite with HaskellServerRunningInDocker {
3333

34+
override def munitFlakyOK: Boolean = true
35+
3436
def serverPort: Int = Constants.ProtobufPort
3537
def serverExecutableName: String = "protobuf-server"
3638

@@ -69,7 +71,7 @@ class HaskellServerScalaClientSpec extends CatsEffectSuite with HaskellServerRun
6971
IO(clientFixture()).flatMap(_.publishRainEvents(stream)).assertEquals(expectedResponse)
7072
}
7173

72-
test(behaviorOf + "it should work for a server-streaming call") {
74+
test((behaviorOf + "it should work for a server-streaming call").flaky) {
7375
val request = SubscribeToRainEventsRequest("London")
7476
val expectedEvents =
7577
List(STARTED, STOPPED, STARTED, STOPPED, STARTED)

0 commit comments

Comments
 (0)