From f7b3e96238ee059cf8756b8048b93c01d39689fc Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 11 Sep 2019 15:38:21 +0200 Subject: [PATCH] #182 - Build against R2DBC 0.8 snapshots. Disable JAsync tests until JAsync catches up with R2DBC SPI 0.8. --- pom.xml | 2 +- .../repository/JasyncMySqlR2dbcRepositoryIntegrationTests.java | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 458c1d3..a55a313 100644 --- a/pom.xml +++ b/pom.xml @@ -34,7 +34,7 @@ 1.0.6 0.2.0.M2 7.1.2.jre8-preview - Arabba-M8 + Arabba-BUILD-SNAPSHOT 1.0.1 4.1.39.Final diff --git a/src/test/java/org/springframework/data/r2dbc/repository/JasyncMySqlR2dbcRepositoryIntegrationTests.java b/src/test/java/org/springframework/data/r2dbc/repository/JasyncMySqlR2dbcRepositoryIntegrationTests.java index 486ea28..7a13c0d 100644 --- a/src/test/java/org/springframework/data/r2dbc/repository/JasyncMySqlR2dbcRepositoryIntegrationTests.java +++ b/src/test/java/org/springframework/data/r2dbc/repository/JasyncMySqlR2dbcRepositoryIntegrationTests.java @@ -16,6 +16,7 @@ package org.springframework.data.r2dbc.repository; import io.r2dbc.spi.ConnectionFactory; +import org.junit.Ignore; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; @@ -45,6 +46,7 @@ import org.springframework.test.context.junit4.SpringRunner; */ @RunWith(SpringRunner.class) @ContextConfiguration +@Ignore("https://github.com/jasync-sql/jasync-sql/issues/150") public class JasyncMySqlR2dbcRepositoryIntegrationTests extends AbstractR2dbcRepositoryIntegrationTests { @ClassRule public static final ExternalDatabase database = MySqlTestSupport.database();