diff --git a/src/Robo/Commands/Tests/PhpUnitCommand.php b/src/Robo/Commands/Tests/PhpUnitCommand.php index 05d5978b6..d0fd43328 100644 --- a/src/Robo/Commands/Tests/PhpUnitCommand.php +++ b/src/Robo/Commands/Tests/PhpUnitCommand.php @@ -5,6 +5,7 @@ use Acquia\Blt\Robo\BltTasks; use Acquia\Blt\Robo\Exceptions\BltException; use Robo\Contract\VerbosityThresholdInterface; +use Symfony\Component\Console\Output\OutputInterface; /** * Defines commands in the "tests" namespace. @@ -61,6 +62,11 @@ public function testsPhpUnit() { $task->dir($test['path']); } + if ($this->output()->getVerbosity() >= OutputInterface::VERBOSITY_NORMAL) { + $task->printMetadata(TRUE); + $task->arg('-v'); + } + $supported_options = [ 'config' => 'configuration', 'group' => 'group',