From ed980d33acd72676e9bb0d80b32439ae3f34ae1e Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Mon, 13 Nov 2023 12:40:56 +0100 Subject: [PATCH] Temporarily ignore tests failing randomly on CI --- .../springframework/batch/core/test/ldif/LdifReaderTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-batch-core-tests/src/test/java/org/springframework/batch/core/test/ldif/LdifReaderTests.java b/spring-batch-core-tests/src/test/java/org/springframework/batch/core/test/ldif/LdifReaderTests.java index 148c59320..7d53b5d9e 100644 --- a/spring-batch-core-tests/src/test/java/org/springframework/batch/core/test/ldif/LdifReaderTests.java +++ b/spring-batch-core-tests/src/test/java/org/springframework/batch/core/test/ldif/LdifReaderTests.java @@ -23,6 +23,7 @@ import java.io.FileReader; import java.net.MalformedURLException; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.batch.core.ExitStatus; @@ -41,6 +42,7 @@ import org.springframework.util.Assert; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "/simple-job-launcher-context.xml", "/applicationContext-test1.xml"}) +@Ignore("Randomly failing on CI") public class LdifReaderTests { private Resource expected;