Skip to content

Commit 32ec464

Browse files
committed
Disable package cycle tests.
Property Converters introduced a cycle so we're disabling the tests for now as we cannot resolve these from here. See #1132
1 parent 2831685 commit 32ec464

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

spring-data-jdbc/src/test/java/org/springframework/data/jdbc/DependencyTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
package org.springframework.data.jdbc;
1717

1818
import org.assertj.core.api.SoftAssertions;
19+
import org.junit.jupiter.api.Disabled;
1920
import org.junit.jupiter.api.Test;
2021
import org.springframework.data.auditing.config.AuditingHandlerBeanDefinitionParser;
2122

@@ -56,6 +57,7 @@ void cycleFree() {
5657
}
5758

5859
@Test
60+
@Disabled("Cycle in Spring Data Commons")
5961
void acrossModules() {
6062

6163
JavaClasses importedClasses = new ClassFileImporter()

spring-data-relational/src/test/java/org/springframework/data/relational/DependencyTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
package org.springframework.data.relational;
1717

1818
import org.assertj.core.api.SoftAssertions;
19+
import org.junit.jupiter.api.Disabled;
1920
import org.junit.jupiter.api.Test;
2021
import org.springframework.data.relational.core.dialect.RenderContextFactory;
2122
import org.springframework.data.relational.core.sql.render.SelectRenderContext;
@@ -58,6 +59,7 @@ void cycleFree() {
5859
}
5960

6061
@Test
62+
@Disabled("Cycle in Spring Data Commons")
6163
void acrossModules() {
6264

6365
JavaClasses importedClasses = new ClassFileImporter() //

0 commit comments

Comments
 (0)