We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 458de67 commit 3595c14Copy full SHA for 3595c14
src/Console/DuskParallelCommand.php
@@ -34,13 +34,14 @@ protected function binary()
34
35
protected function phpunitArguments($options)
36
{
37
- $options = array_values(array_filter($options, function ($option) {
38
- return ! str_starts_with($option, '--processes=')
39
- && ! str_starts_with($option, '--runner=');
40
- }));
41
-
42
$args = parent::phpunitArguments($options);
43
+ $args = array_values(array_filter($args, function ($arg) {
+ return ! str_starts_with($arg, '--no-output')
+ && ! str_starts_with($arg, '--processes=')
+ && ! str_starts_with($arg, '--runner=');
+ }));
44
+
45
$args[] = '--processes';
46
$args[] = $this->option('processes');
47
0 commit comments