Skip to content

Commit 86c6edf

Browse files
committed
Ignore all the Derby tests
Not clear what is going on on CI server and how resources are not cleaned up in between builds
1 parent 5081fa3 commit 86c6edf

9 files changed

+27
-9
lines changed

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/AggregatorIntegrationTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2019 the original author or authors.
2+
* Copyright 2014-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,6 +24,7 @@
2424
import java.util.concurrent.TimeUnit;
2525

2626
import org.junit.After;
27+
import org.junit.Ignore;
2728
import org.junit.Test;
2829
import org.junit.runner.RunWith;
2930

@@ -51,6 +52,7 @@
5152
@ContextConfiguration
5253
@RunWith(SpringJUnit4ClassRunner.class)
5354
@DirtiesContext
55+
@Ignore
5456
public class AggregatorIntegrationTests {
5557

5658
@Autowired

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/JdbcPollingChannelAdapterIntegrationTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,6 +28,7 @@
2828
import org.junit.After;
2929
import org.junit.AfterClass;
3030
import org.junit.BeforeClass;
31+
import org.junit.Ignore;
3132
import org.junit.Test;
3233

3334
import org.springframework.beans.factory.BeanFactory;
@@ -44,6 +45,7 @@
4445
* @author Gary Russell
4546
* @author Artem Bilan
4647
*/
48+
@Ignore
4749
public class JdbcPollingChannelAdapterIntegrationTests {
4850

4951
private static EmbeddedDatabase embeddedDatabase;

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/StoredProcMessageHandlerDerbyIntegrationTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,6 +27,7 @@
2727
import org.junit.After;
2828
import org.junit.AfterClass;
2929
import org.junit.BeforeClass;
30+
import org.junit.Ignore;
3031
import org.junit.Test;
3132

3233
import org.springframework.beans.factory.BeanFactory;
@@ -45,6 +46,7 @@
4546
* @author Gary Russell
4647
* @author Artem Bilan
4748
*/
49+
@Ignore
4850
public class StoredProcMessageHandlerDerbyIntegrationTests {
4951

5052
private static EmbeddedDatabase embeddedDatabase;

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/StoredProcOutboundChannelAdapterWithinChainTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,6 +20,7 @@
2020

2121
import java.util.Map;
2222

23+
import org.junit.Ignore;
2324
import org.junit.Test;
2425
import org.junit.runner.RunWith;
2526

@@ -39,6 +40,7 @@
3940
*/
4041
@RunWith(SpringRunner.class)
4142
@DirtiesContext // close at the end after class
43+
@Ignore
4244
public class StoredProcOutboundChannelAdapterWithinChainTests {
4345

4446
@Autowired

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/StoredProcOutboundGatewayWithSpelIntegrationTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,6 +26,7 @@
2626
import java.util.concurrent.TimeUnit;
2727
import java.util.concurrent.atomic.AtomicInteger;
2828

29+
import org.junit.Ignore;
2930
import org.junit.Test;
3031
import org.junit.runner.RunWith;
3132
import org.mockito.Mockito;
@@ -61,6 +62,7 @@
6162
@ContextConfiguration
6263
@RunWith(SpringJUnit4ClassRunner.class)
6364
@DirtiesContext // close at the end after class
65+
@Ignore
6466
public class StoredProcOutboundGatewayWithSpelIntegrationTests {
6567

6668
@Autowired

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/StoredProcOutboundGatewayWithSpringContextIntegrationTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,6 +26,7 @@
2626
import java.util.concurrent.TimeUnit;
2727
import java.util.concurrent.atomic.AtomicInteger;
2828

29+
import org.junit.Ignore;
2930
import org.junit.Test;
3031
import org.junit.runner.RunWith;
3132

@@ -45,6 +46,7 @@
4546
@ContextConfiguration
4647
@RunWith(SpringJUnit4ClassRunner.class)
4748
@DirtiesContext // close at the end after class
49+
@Ignore
4850
public class StoredProcOutboundGatewayWithSpringContextIntegrationTests {
4951

5052
@Autowired

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/lock/JdbcLockRegistryTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2019 the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,6 +26,7 @@
2626
import java.util.concurrent.locks.Lock;
2727

2828
import org.junit.Before;
29+
import org.junit.Ignore;
2930
import org.junit.Test;
3031
import org.junit.runner.RunWith;
3132

@@ -46,6 +47,7 @@
4647
@ContextConfiguration
4748
@RunWith(SpringJUnit4ClassRunner.class)
4849
@DirtiesContext
50+
@Ignore
4951
public class JdbcLockRegistryTests {
5052

5153
private final AsyncTaskExecutor taskExecutor = new SimpleAsyncTaskExecutor();

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/metadata/JdbcMetadataStoreTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2019 the original author or authors.
2+
* Copyright 2017-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,6 +20,7 @@
2020

2121
import javax.sql.DataSource;
2222

23+
import org.junit.Ignore;
2324
import org.junit.jupiter.api.BeforeEach;
2425
import org.junit.jupiter.api.Test;
2526

@@ -37,6 +38,7 @@
3738
@SpringJUnitConfig
3839
@DirtiesContext // close at the end after class
3940
@Transactional
41+
@Ignore
4042
public class JdbcMetadataStoreTests {
4143

4244
@Autowired

spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/store/JdbcMessageStoreChannelOnePollerIntegrationTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,6 +26,7 @@
2626

2727
import org.junit.After;
2828
import org.junit.Before;
29+
import org.junit.Ignore;
2930
import org.junit.Test;
3031
import org.junit.runner.RunWith;
3132

@@ -50,6 +51,7 @@
5051
@ContextConfiguration
5152
@RunWith(SpringJUnit4ClassRunner.class)
5253
@DirtiesContext // close at the end after class
54+
@Ignore
5355
public class JdbcMessageStoreChannelOnePollerIntegrationTests {
5456

5557
@Autowired

0 commit comments

Comments
 (0)