GH-430 - Avoid duplicate inclusions of modules in test executions.
This commit is contained in:
@@ -79,7 +79,7 @@ public class ModuleTestExecution implements Iterable<ApplicationModule> {
|
||||
|
||||
var bootstrapDependencies = module.getBootstrapDependencies(modules,
|
||||
bootstrapMode.getDepth());
|
||||
return Stream.concat(bootstrapDependencies, extraIncludes.stream()).toList();
|
||||
return Stream.concat(bootstrapDependencies, extraIncludes.stream()).distinct().toList();
|
||||
});
|
||||
|
||||
if (annotation.verifyAutomatically()) {
|
||||
|
||||
Reference in New Issue
Block a user