diff --git a/modules/server/src/test/scala/fs2/RPCTests.scala b/modules/server/src/test/scala/fs2/RPCTests.scala index af08e6454..f4dcb631a 100644 --- a/modules/server/src/test/scala/fs2/RPCTests.scala +++ b/modules/server/src/test/scala/fs2/RPCTests.scala @@ -119,6 +119,9 @@ class RPCTests extends RpcBaseTestSuite with BeforeAndAfterAll { "be able to run client bidirectional streaming services with avro schema" in { + ignoreOnTravis( + "TODO: restore once https://github.com/frees-io/freestyle-rpc/issues/164 is fixed") + freesRPCServiceClient .biStreamingWithSchema(Stream.fromIterator[ConcurrentMonad, E](eList.iterator)) .compile @@ -203,6 +206,9 @@ class RPCTests extends RpcBaseTestSuite with BeforeAndAfterAll { "be able to run client bidirectional streaming services with avro schema" in { + ignoreOnTravis( + "TODO: restore once https://github.com/frees-io/freestyle-rpc/issues/164 is fixed") + freesRPCServiceClient .biStreamingCompressedWithSchema(Stream.fromIterator[ConcurrentMonad, E](eList.iterator)) .compile diff --git a/modules/server/src/test/scala/protocol/RPCTests.scala b/modules/server/src/test/scala/protocol/RPCTests.scala index aed184c25..97d97b5b0 100644 --- a/modules/server/src/test/scala/protocol/RPCTests.scala +++ b/modules/server/src/test/scala/protocol/RPCTests.scala @@ -142,9 +142,6 @@ class RPCTests extends RpcBaseTestSuite with BeforeAndAfterAll { "be able to run client bidirectional streaming services" in { - ignoreOnTravis( - "TODO: restore once https://github.com/frees-io/freestyle-rpc/issues/237 is fixed") - def clientProgram[F[_]](implicit APP: MyRPCClient[F]): F[E] = APP.bs(eList)