From ceef0bd1d4faa93f41af6d4d200d0bafffeb71cd Mon Sep 17 00:00:00 2001 From: "J. King" Date: Sat, 16 Dec 2017 10:49:18 -0500 Subject: [PATCH] Fix coverage task --- RoboFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RoboFile.php b/RoboFile.php index 0434ae5..119c23f 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -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 {