Skip to content

Commit

Permalink
Temporarily ignore RSocket integration tests
Browse files Browse the repository at this point in the history
Issue gh-8643
  • Loading branch information
eleftherias authored and jzheaux committed Jun 3, 2020
1 parent 116bfe0 commit 8dd9cb2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Expand Up @@ -22,6 +22,7 @@
import io.rsocket.transport.netty.server.TcpServerTransport;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down Expand Up @@ -52,6 +53,7 @@
*/
@ContextConfiguration
@RunWith(SpringRunner.class)
@Ignore
public class HelloRSocketITests {
@Autowired
RSocketMessageHandler handler;
Expand Down
Expand Up @@ -22,6 +22,7 @@
import io.rsocket.transport.netty.server.TcpServerTransport;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down Expand Up @@ -58,6 +59,7 @@
*/
@ContextConfiguration
@RunWith(SpringRunner.class)
@Ignore
public class RSocketMessageHandlerConnectionITests {
@Autowired
RSocketMessageHandler handler;
Expand Down
Expand Up @@ -23,6 +23,7 @@
import io.rsocket.transport.netty.server.TcpServerTransport;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down Expand Up @@ -58,6 +59,7 @@
*/
@ContextConfiguration
@RunWith(SpringRunner.class)
@Ignore
public class RSocketMessageHandlerITests {
@Autowired
RSocketMessageHandler handler;
Expand Down
Expand Up @@ -15,6 +15,7 @@
*/
package sample;

import org.junit.Ignore;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.rsocket.context.LocalRSocketServerPort;
import org.springframework.boot.test.context.SpringBootTest;
Expand All @@ -40,6 +41,7 @@
@RunWith(SpringRunner.class)
@TestPropertySource(properties = "spring.rsocket.server.port=0")
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@Ignore
public class HelloRSocketApplicationITests {

@Autowired
Expand Down

0 comments on commit 8dd9cb2

Please sign in to comment.