File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
src/main/java/de/donnerbart/split Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,13 @@ public TestSplit(
62
62
public void run () throws Exception {
63
63
LOG .info ("Split index {} (total: {})" , splitIndex , splitTotal );
64
64
LOG .info ("Working directory: {}" , workingDirectory );
65
+ LOG .info ("Glob: {}" , glob );
66
+ if (excludeGlob != null ) {
67
+ LOG .info ("Exclude glob: {}" , excludeGlob );
68
+ }
69
+ if (junitGlob != null ) {
70
+ LOG .info ("JUnit glob: {}" , junitGlob );
71
+ }
65
72
final var testPaths = getPaths (workingDirectory , glob , excludeGlob );
66
73
final var classNames = fileToClassName (testPaths , exitCodeConsumer );
67
74
if (classNames .isEmpty ()) {
@@ -112,7 +119,7 @@ public void run() throws Exception {
112
119
testCases .stream ()
113
120
.sorted (Comparator .reverseOrder ())
114
121
.forEach (testCase -> splits .stream ().sorted ().findFirst ().ifPresent (split -> {
115
- LOG .debug ("Splitting test {} to split #{}" , testCase .name (), split .index ());
122
+ LOG .debug ("Adding test {} to split #{}" , testCase .name (), split .index ());
116
123
split .add (testCase );
117
124
}));
118
125
You can’t perform that action at this time.
0 commit comments