0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

coverage.xml

This commit is contained in:
David Goodwin 2020-03-02 13:25:14 +00:00
parent e661f2445a
commit 6c3d595c0b
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ jobs:
run: composer build
- name: Coveralls
run: php vendor/bin/php-coveralls -v
run: php vendor/bin/php-coveralls -v --coverage-clover=coverage.xml
env:
COVERALLS_RUN_LOCALLY: 1
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

View File

@ -14,7 +14,7 @@
"check-format": "php-cs-fixer fix --ansi --dry-run --diff",
"format": "php-cs-fixer fix --ansi",
"lint": "@php ./vendor/bin/parallel-lint --exclude vendor/ --exclude lib/block_random_int.php --exclude lib/array_column.php .",
"test": "DATABASE=sqlite ./vendor/bin/phpunit tests/",
"test": "DATABASE=sqlite ./vendor/bin/phpunit --coverage-clover ./coverage.xml tests/",
"test-fixup": "mkdir -p templates_c ; test -f config.local.php || touch config.local.php",
"psalm": "@php ./vendor/bin/psalm --no-cache --show-info=false "
},