summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-26 22:47:08 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-26 22:47:08 +0100
commit4b428439bcd9bbad16eb7e081c9753b0bd41677a (patch)
treea857b0bb8925081959d9897701183d83385ae74e /Makefile
parenta232e8f76dd1352fd8788400c41db7cf2215bc4a (diff)
also generate coverage when phpunit exists in path
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f0f205453..d3cb83f55 100644
--- a/Makefile
+++ b/Makefile
@@ -171,6 +171,6 @@ ifeq (, $(shell which phpunit 2> /dev/null))
php $(build_tools_directory)/phpunit.phar -c phpunit.xml --coverage-clover build/php-unit.clover
php $(build_tools_directory)/phpunit.phar -c phpunit.integration.xml --coverage-clover build/php-integration.clover
else
- phpunit -c phpunit.xml
- phpunit -c phpunit.integration.xml
+ phpunit -c phpunit.xml --coverage-clover build/php-unit.clover
+ phpunit -c phpunit.integration.xml --coverage-clover build/php-unit.clover
endif