#553 - Disable only the broken test not the complete module.

This commit is contained in:
Jens Schauder
2020-05-14 10:11:40 +02:00
committed by Mark Paluch
parent 005aa56d5d
commit aa29bc5991
2 changed files with 3 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ package example.springdata.jdbc.mybatis;
import static org.assertj.core.api.Assertions.*;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mybatis.spring.boot.test.autoconfigure.MybatisTest;
@@ -39,6 +40,7 @@ public class MyBatisTests {
@Autowired LegoSetRepository repository;
@Test
@Ignore // this is currently broken until the fix for DATAJDBC-542 is released.
public void exerciseSomewhatComplexEntity() {
LegoSet smallCar = createLegoSet();

View File

@@ -18,7 +18,7 @@
<modules>
<module>basics</module>
<!-- <module>mybatis</module> -->
<module>mybatis</module>
<module>jooq</module>
</modules>