diff --git a/src/Plugins/Parallel/Paratest/ResultPrinter.php b/src/Plugins/Parallel/Paratest/ResultPrinter.php index 2041b44e6..796137d8e 100644 --- a/src/Plugins/Parallel/Paratest/ResultPrinter.php +++ b/src/Plugins/Parallel/Paratest/ResultPrinter.php @@ -12,6 +12,7 @@ use SebastianBergmann\Timer\Duration; use SplFileInfo; use Symfony\Component\Console\Formatter\OutputFormatter; +use Symfony\Component\Console\Output\ConsoleOutput; use Symfony\Component\Console\Output\OutputInterface; use function assert; @@ -83,6 +84,7 @@ public function flush(): void {} $this->compactPrinter = CompactPrinter::default( decorated: ! in_array('--colors=never', $_SERVER['argv'] ?? [], true), + verbosity: ConsoleOutput::VERBOSITY_VERBOSE, ); if (! $this->options->configuration->hasLogfileTeamcity()) { diff --git a/src/Plugins/Parallel/Support/CompactPrinter.php b/src/Plugins/Parallel/Support/CompactPrinter.php index 2119646e9..1853870c9 100644 --- a/src/Plugins/Parallel/Support/CompactPrinter.php +++ b/src/Plugins/Parallel/Support/CompactPrinter.php @@ -62,12 +62,17 @@ public function __construct( /** * Creates a new instance of the Compact Printer. */ - public static function default(bool $decorated = true): self - { + public static function default( + bool $decorated = true, + int $verbosity = ConsoleOutput::VERBOSITY_NORMAL, + ): self { return new self( terminal(), new ConsoleOutput(decorated: $decorated), - new Style(new ConsoleOutput(decorated: $decorated)), + new Style(new ConsoleOutput( + verbosity: $verbosity, + decorated: $decorated, + )), terminal()->width() - 4, ); }