Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignoring new bidirectional FS2 tests on Travis #281

Merged
merged 1 commit into from
May 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/server/src/test/scala/fs2/RPCTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions modules/server/src/test/scala/protocol/RPCTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down