#185 - Disable Postgres integration tests.
Disabling until r2dbc/r2dbc-postgresql#151 is resolved.
This commit is contained in:
@@ -22,7 +22,7 @@ import javax.sql.DataSource;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.springframework.data.r2dbc.core.DatabaseClient;
|
||||
|
||||
import org.springframework.data.r2dbc.testing.ExternalDatabase;
|
||||
import org.springframework.data.r2dbc.testing.PostgresTestSupport;
|
||||
|
||||
@@ -31,6 +31,7 @@ import org.springframework.data.r2dbc.testing.PostgresTestSupport;
|
||||
*
|
||||
* @author Mark Paluch
|
||||
*/
|
||||
@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151")
|
||||
public class PostgresDatabaseClientIntegrationTests extends AbstractDatabaseClientIntegrationTests {
|
||||
|
||||
@ClassRule public static final ExternalDatabase database = PostgresTestSupport.database();
|
||||
|
||||
@@ -29,6 +29,7 @@ import javax.sql.DataSource;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.data.annotation.Id;
|
||||
@@ -43,6 +44,7 @@ import org.springframework.jdbc.core.JdbcTemplate;
|
||||
*
|
||||
* @author Mark Paluch
|
||||
*/
|
||||
@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151")
|
||||
public class PostgresIntegrationTests extends R2dbcIntegrationTestSupport {
|
||||
|
||||
@ClassRule public static final ExternalDatabase database = PostgresTestSupport.database();
|
||||
|
||||
@@ -5,6 +5,7 @@ import io.r2dbc.spi.ConnectionFactory;
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Ignore;
|
||||
|
||||
import org.springframework.data.r2dbc.testing.ExternalDatabase;
|
||||
import org.springframework.data.r2dbc.testing.PostgresTestSupport;
|
||||
@@ -14,6 +15,7 @@ import org.springframework.data.r2dbc.testing.PostgresTestSupport;
|
||||
*
|
||||
* @author Mark Paluch
|
||||
*/
|
||||
@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151")
|
||||
public class PostgresTransactionalDatabaseClientIntegrationTests
|
||||
extends AbstractTransactionalDatabaseClientIntegrationTests {
|
||||
|
||||
|
||||
@@ -22,6 +22,7 @@ import reactor.core.publisher.Mono;
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
@@ -44,6 +45,7 @@ import org.springframework.test.context.junit4.SpringRunner;
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@ContextConfiguration
|
||||
@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151")
|
||||
public class PostgresR2dbcRepositoryIntegrationTests extends AbstractR2dbcRepositoryIntegrationTests {
|
||||
|
||||
@ClassRule public static final ExternalDatabase database = PostgresTestSupport.database();
|
||||
|
||||
@@ -20,6 +20,7 @@ import io.r2dbc.spi.ConnectionFactory;
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.data.r2dbc.config.AbstractR2dbcConfiguration;
|
||||
@@ -35,6 +36,7 @@ import org.springframework.test.context.junit4.SpringRunner;
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@ContextConfiguration
|
||||
@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151")
|
||||
public class PostgresSimpleR2dbcRepositoryIntegrationTests extends AbstractSimpleR2dbcRepositoryIntegrationTests {
|
||||
|
||||
@ClassRule public static final ExternalDatabase database = PostgresTestSupport.database();
|
||||
|
||||
Reference in New Issue
Block a user