Skip to content

Commit

Permalink
Adds parallel runner
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Jan 7, 2021
1 parent b8e0065 commit fcfabec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Adapters/Laravel/Commands/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ protected function paratestArguments($options)
$file = base_path('phpunit.xml.dist');
}

return array_merge(["--configuration=$file"], $options);
return array_merge([
"--configuration=$file",
"--runner=\Illuminate\Testing\ParallelRunner"
], $options);
}

/**
Expand Down

0 comments on commit fcfabec

Please sign in to comment.