From ea871fc748dc8720a441a375921438876bc97221 Mon Sep 17 00:00:00 2001 From: Ronan Guilloux Date: Sun, 27 Dec 2015 14:23:00 +0100 Subject: [PATCH] better quality-related Makefile tasks --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 03affb6..37492fa 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ unit: vendor/autoload.php continuous: vendor/autoload.php @echo "Starting continuous tests..." - @while true; do bin/phpunit -c build/phpunit.xml -v; done + @while true; do bin/phpunit -v; done sniff: vendor/autoload.php @bin/phpcs --standard=PSR2 src -n @@ -94,7 +94,7 @@ cs-fix: quality: sniff dry-fix # packagist-based dev tools to add to your composer.json. See http://phpqatools.org -stats: quality done +stats: build quality done @echo "Some stats about code quality" @bin/phploc src @bin/phploc tests