diff --git a/src/Domain/Tool/Phpunit/PhpUnitTask.php b/src/Domain/Tool/Phpunit/PhpUnitTask.php index 4f3da4f6c..07a35fba2 100644 --- a/src/Domain/Tool/Phpunit/PhpUnitTask.php +++ b/src/Domain/Tool/Phpunit/PhpUnitTask.php @@ -415,6 +415,7 @@ protected function runPhpUnit(): void { } if ($this->shouldGenerateCodeCoverageInCobertura()) { + $command[] = "--coverage-text"; $command[] = "--coverage-cobertura={$this->coberturaCoverage}"; $this->processRunner->addEnvVar("XDEBUG_MODE", "coverage"); } @@ -424,7 +425,7 @@ protected function runPhpUnit(): void { } $command = array_merge($command, [ - '--colors=always', + '--colors=never', "--configuration={$this->fixture->getPath('docroot/core/phpunit.xml')}", '--exclude-group=orca_ignore', '--testsuite=orca',