diff --git a/src/Plugins/Parallel/Paratest/ResultPrinter.php b/src/Plugins/Parallel/Paratest/ResultPrinter.php index a0e0033e..eb23ccfe 100644 --- a/src/Plugins/Parallel/Paratest/ResultPrinter.php +++ b/src/Plugins/Parallel/Paratest/ResultPrinter.php @@ -67,7 +67,12 @@ final class ResultPrinter public function print(string $buffer): void { - $this->output->write(OutputFormatter::escape($buffer)); + $buffer = OutputFormatter::escape($buffer); + + if (! str_starts_with($buffer, "\nGenerating code coverage report") + && ! str_starts_with($buffer, 'done [')) { + $this->output->write(OutputFormatter::escape($buffer)); + } } public function flush(): void