Parsing variables in the code coverage output directory for PHPUnit

This commit is contained in:
Stephen Ball 2015-03-16 11:10:03 +00:00
parent 52b2f87df2
commit fdaaa1ede4

View file

@ -133,7 +133,7 @@ class PhpUnit implements PHPCI\Plugin, PHPCI\ZeroConfigPlugin
}
if (isset($options['coverage'])) {
$this->coverage = " --coverage-html {$options['coverage']} ";
$this->coverage = ' --coverage-html ' . $this->phpci->interpolate($options['coverage']) . ' ';
}
}