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
This commit is contained in:
Mark Paluch
2022-03-21 08:47:36 +01:00
parent 2831685c9d
commit 32ec464572
2 changed files with 4 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
package org.springframework.data.jdbc;
import org.assertj.core.api.SoftAssertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.data.auditing.config.AuditingHandlerBeanDefinitionParser;
@@ -56,6 +57,7 @@ public class DependencyTests {
}
@Test
@Disabled("Cycle in Spring Data Commons")
void acrossModules() {
JavaClasses importedClasses = new ClassFileImporter()

View File

@@ -16,6 +16,7 @@
package org.springframework.data.relational;
import org.assertj.core.api.SoftAssertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.data.relational.core.dialect.RenderContextFactory;
import org.springframework.data.relational.core.sql.render.SelectRenderContext;
@@ -58,6 +59,7 @@ public class DependencyTests {
}
@Test
@Disabled("Cycle in Spring Data Commons")
void acrossModules() {
JavaClasses importedClasses = new ClassFileImporter() //