Java 25297 (#14844) Disable rethinkdb testing on jenkins
This commit is contained in:
parent
058119dfea
commit
6528856bc5
|
@ -115,7 +115,7 @@
|
|||
<module>java-mongodb</module>
|
||||
<module>questdb</module>
|
||||
<module>neo4j</module>
|
||||
<!--<module>rethinkdb</module>--> <!-- JAVA-25297 -->
|
||||
<module>rethinkdb</module>
|
||||
<module>scylladb</module>
|
||||
<module>spring-data-cassandra-2</module>
|
||||
<module>spring-data-jpa-repo-3</module>
|
||||
|
|
|
@ -10,7 +10,7 @@ import static com.rethinkdb.RethinkDB.r;
|
|||
/**
|
||||
* Some tests demonstrating inserting data.
|
||||
*/
|
||||
public class InsertIntegrationTest extends TestBase {
|
||||
public class InsertIntegrationLiveTest extends TestBase {
|
||||
/**
|
||||
* Create a table for the tests.
|
||||
*/
|
|
@ -16,7 +16,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
|
|||
/**
|
||||
* Some tests demonstrating querying data.
|
||||
*/
|
||||
public class QueryIntegrationTest extends TestBase {
|
||||
public class QueryIntegrationLiveTest extends TestBase {
|
||||
/**
|
||||
* Create a table for the tests.
|
||||
*/
|
|
@ -13,7 +13,7 @@ import static com.rethinkdb.RethinkDB.r;
|
|||
/**
|
||||
* Some tests demonstrating streaming live changes to data.
|
||||
*/
|
||||
public class StreamingIntegrationTest extends TestBase {
|
||||
public class StreamingIntegrationLiveTest extends TestBase {
|
||||
@Test
|
||||
public void getLiveInserts() throws InterruptedException {
|
||||
ExecutorService executorService = Executors.newCachedThreadPool();
|
|
@ -12,7 +12,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
|
|||
/**
|
||||
* Some tests demonstrating working with tables.
|
||||
*/
|
||||
public class TablesIntegrationTest extends TestBase {
|
||||
public class TablesIntegrationLiveTest extends TestBase {
|
||||
|
||||
@Test
|
||||
public void createTable() {
|
|
@ -8,7 +8,7 @@ import static com.rethinkdb.RethinkDB.r;
|
|||
/**
|
||||
* Some tests demonstrating updating data.
|
||||
*/
|
||||
public class UpdateIntegrationTest extends TestBase {
|
||||
public class UpdateIntegrationLiveTest extends TestBase {
|
||||
/**
|
||||
* Create a table for the tests.
|
||||
*/
|
Loading…
Reference in New Issue