From ee9dc1ee10ed3e4247058b9944ec66aa2e612985 Mon Sep 17 00:00:00 2001 From: Flavio Heleno Date: Wed, 24 Apr 2024 10:15:07 -0300 Subject: [PATCH] Fix PHPUnit command line arguments in composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d9f6ca8..06d1e70 100644 --- a/composer.json +++ b/composer.json @@ -68,9 +68,9 @@ "lint": "vendor/bin/parallel-lint --exclude vendor .", "phpcs": "vendor/bin/phpcs --standard=ruleset.xml src/ tests/", "phpstan": "vendor/bin/phpstan analyse --level=max --autoload-file=vendor/autoload.php src/", - "phpunit": "vendor/bin/phpunit ./tests/ --coverage-html=./report/coverage/ --whitelist=./src/ --testdox-html=./report/testdox.html --disallow-test-output --process-isolation", + "phpunit": "vendor/bin/phpunit ./tests/ --coverage-html=./report/coverage/ --testdox-html=./report/testdox.html --disallow-test-output --process-isolation", "test-ci": "vendor/bin/phpunit ./tests/ --disallow-test-output --process-isolation", - "test-coverage": "vendor/bin/phpunit ./tests/ --whitelist=./src/ --coverage-clover=clover.xml", + "test-coverage": "vendor/bin/phpunit ./tests/ --coverage-clover=clover.xml", "test": [ "@infection", "@lint",