Skip to content

Commit aa39f35

Browse files
committed
Disable broken part of DependencyTests.
See #777 See #1105
1 parent 61c6438 commit aa39f35

File tree

1 file changed

+6
-1
lines changed
  • spring-data-relational/src/test/java/org/springframework/data/relational/degraph

1 file changed

+6
-1
lines changed

Diff for: spring-data-relational/src/test/java/org/springframework/data/relational/degraph/DependencyTests.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@
1919
import static org.hamcrest.MatcherAssert.*;
2020

2121
import de.schauderhaft.degraph.check.JCheck;
22-
import org.junit.jupiter.api.Test;
2322
import scala.runtime.AbstractFunction1;
2423

24+
import org.junit.jupiter.api.Test;
25+
import org.springframework.data.relational.core.dialect.RenderContextFactory;
26+
import org.springframework.data.relational.core.sql.render.SelectRenderContext;
27+
2528
/**
2629
* Test package dependencies for violations.
2730
*
@@ -37,6 +40,8 @@ public void cycleFree() {
3740
classpath() //
3841
.noJars() //
3942
.including("org.springframework.data.relational.**") //
43+
.excluding(SelectRenderContext.class.getName()) //
44+
.excluding(RenderContextFactory.class.getName() + "*") //
4045
.filterClasspath("*target/classes") // exclude test code
4146
.printOnFailure("degraph-relational.graphml"),
4247
JCheck.violationFree());

0 commit comments

Comments
 (0)