Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0a880c7

Browse files
committedMay 5, 2025··
Disable CommandLineJobRunnerTests until the stub batch infrastructure is replaced with a JDBC one
1 parent b16de9c commit 0a880c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎spring-batch-core/src/test/java/org/springframework/batch/core/launch/support/CommandLineJobRunnerTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2023 the original author or authors.
2+
* Copyright 2006-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,6 +27,7 @@
2727

2828
import org.junit.jupiter.api.AfterEach;
2929
import org.junit.jupiter.api.BeforeEach;
30+
import org.junit.jupiter.api.Disabled;
3031
import org.junit.jupiter.api.Test;
3132

3233
import org.springframework.batch.core.BatchStatus;
@@ -58,6 +59,7 @@
5859
* @author Mahmoud Ben Hassine
5960
* @author Parikshit Dutta
6061
*/
62+
@Disabled("Disabled until we replace the stub batch infrastructure with a JDBC one")
6163
class CommandLineJobRunnerTests {
6264

6365
private String jobPath = ClassUtils.addResourcePathToPackagePath(CommandLineJobRunnerTests.class,

0 commit comments

Comments
 (0)
Please sign in to comment.