Skip to content

Commit

Permalink
fix: should use selectModule() and not selectPackage()
Browse files Browse the repository at this point in the history
  • Loading branch information
forax committed Jul 7, 2018
1 parent 6a0ac89 commit dc58109
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ private static int launchJUnitPlatform(TestConf testConf) {
var parallel = testConf.parallel();

var builder = LauncherDiscoveryRequestBuilder.request();
//builder.selectors(selectModule(moduleName));
builder.selectors(selectPackage(moduleName));
builder.selectors(selectModule(moduleName));
//builder.selectors(selectPackage(moduleName));
builder.configurationParameter("junit.jupiter.execution.parallel.enabled", Boolean.toString(parallel));

var launcher = LauncherFactory.create();
Expand Down

0 comments on commit dc58109

Please sign in to comment.