Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-27 00:47:08 +0300
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-27 00:47:08 +0300
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