1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Fix coverage task

This commit is contained in:
J. King 2017-12-16 10:49:18 -05:00
parent b8ed7c6bf8
commit ceef0bd1d4

View file

@ -20,7 +20,7 @@ class RoboFile extends \Robo\Tasks {
public function coverage(array $args): Result {
// run the test suite with code coverage reporting enabled
return $this->test(["--coverage-html",self::BASE_TEST."coverage"]);
return $this->test(array_merge(["--coverage-html",self::BASE_TEST."coverage"], $args));
}
public function package(array $args): Result {