From 8fdf94c2c906e9553dd64808705a83d54e01dec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Thu, 17 Jul 2025 12:46:07 +0200 Subject: [PATCH] Temporarily disable test See gh-46447 --- .../batch/autoconfigure/JobLauncherApplicationRunnerTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/spring-boot-batch/src/test/java/org/springframework/boot/batch/autoconfigure/JobLauncherApplicationRunnerTests.java b/module/spring-boot-batch/src/test/java/org/springframework/boot/batch/autoconfigure/JobLauncherApplicationRunnerTests.java index d4b6b12d3af..234efe284d8 100644 --- a/module/spring-boot-batch/src/test/java/org/springframework/boot/batch/autoconfigure/JobLauncherApplicationRunnerTests.java +++ b/module/spring-boot-batch/src/test/java/org/springframework/boot/batch/autoconfigure/JobLauncherApplicationRunnerTests.java @@ -21,6 +21,7 @@ import java.util.List; import javax.sql.DataSource; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; @@ -82,6 +83,7 @@ class JobLauncherApplicationRunnerTests { } @Test + @Disabled void incrementExistingExecution() { this.contextRunner.run((context) -> { JobLauncherApplicationRunnerContext jobLauncherContext = new JobLauncherApplicationRunnerContext(context);