Send code coverage to SonarCloud

This commit is contained in:
Antonio Spinelli
2023-07-03 11:37:11 -03:00
parent 7f0db0de04
commit 551c1f4cda
6 changed files with 78 additions and 25 deletions

View File

@@ -170,10 +170,13 @@
"@php artisan firefly-iii:verify-security-alerts"
],
"unit-test": [
"@php vendor/bin/phpunit -c phpunit.xml --testsuite unit"
"@php vendor/bin/phpunit -c phpunit.xml --testsuite unit --no-coverage"
],
"integration-test": [
"@php vendor/bin/phpunit -c phpunit.xml --testsuite integration"
"@php vendor/bin/phpunit -c phpunit.xml --testsuite integration --no-coverage"
],
"coverage": [
"@php vendor/bin/phpunit -c phpunit.xml --testsuite unit"
]
},
"config": {