From 25236de55d7817ea00ee977402196343d9be4818 Mon Sep 17 00:00:00 2001 From: Daniel Opitz Date: Sun, 21 Jul 2024 17:19:15 +0200 Subject: [PATCH] Update test command --- composer.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 78822204..c6d21a91 100644 --- a/composer.json +++ b/composer.json @@ -54,16 +54,15 @@ "sniffer:fix": "phpcbf --standard=phpcs.xml", "stan": "phpstan analyse -c phpstan.neon --no-progress --ansi", "start": "php -S localhost:8080 -t public/", - "test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always --display-deprecations", + "test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always --display-warnings --display-deprecations --no-coverage", "test:all": [ - "@cs:check", "@sniffer:check", "@stan", "@test:coverage" ], "test:coverage": [ "@putenv XDEBUG_MODE=coverage", - "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always --coverage-clover build/logs/clover.xml --coverage-html build/coverage --coverage-text" + "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always --display-warnings --display-deprecations --coverage-clover build/coverage/clover.xml --coverage-html build/coverage --coverage-text" ] } }