diff --git a/reactor/reactor-grpc-test/src/test/java/com/salesforce/reactorgrpc/BackpressureIntegrationTest.java b/reactor/reactor-grpc-test/src/test/java/com/salesforce/reactorgrpc/BackpressureIntegrationTest.java index d64e7cf7..bc27f4f2 100644 --- a/reactor/reactor-grpc-test/src/test/java/com/salesforce/reactorgrpc/BackpressureIntegrationTest.java +++ b/reactor/reactor-grpc-test/src/test/java/com/salesforce/reactorgrpc/BackpressureIntegrationTest.java @@ -18,6 +18,7 @@ import com.salesforce.servicelibs.ReactorNumbersGrpc; import io.grpc.testing.GrpcServerRule; import org.junit.Before; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; @@ -29,6 +30,7 @@ import static org.assertj.core.api.Assertions.assertThat; @SuppressWarnings("Duplicates") +@Ignore @RunWith(Parameterized.class) public class BackpressureIntegrationTest { private static final int NUMBER_OF_STREAM_ELEMENTS = 512 * 12; diff --git a/rx-java/rxgrpc-test/src/test/java/com/salesforce/rxgrpc/BackpressureIntegrationTest.java b/rx-java/rxgrpc-test/src/test/java/com/salesforce/rxgrpc/BackpressureIntegrationTest.java index f1ef6fde..183c26fb 100644 --- a/rx-java/rxgrpc-test/src/test/java/com/salesforce/rxgrpc/BackpressureIntegrationTest.java +++ b/rx-java/rxgrpc-test/src/test/java/com/salesforce/rxgrpc/BackpressureIntegrationTest.java @@ -16,6 +16,7 @@ import io.reactivex.observers.TestObserver; import io.reactivex.subscribers.TestSubscriber; import org.junit.Before; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; @@ -27,6 +28,7 @@ import static org.assertj.core.api.Assertions.assertThat; @SuppressWarnings("Duplicates") +@Ignore public class BackpressureIntegrationTest { @Rule public GrpcServerRule serverRule = new GrpcServerRule();