Created composer command to generate merge pretty code coverage

This commit is contained in:
Alejandro Celaya 2017-10-23 12:54:54 +02:00
parent be34600494
commit 633f3b728f

View File

@ -91,7 +91,12 @@
"serve": "php -S 0.0.0.0:8000 -t public/",
"test": "phpunit --coverage-php build/coverage-unit.cov",
"pretty-test": "phpunit --coverage-html build/coverage",
"func-test": "phpunit -c phpunit-func.xml --coverage-php build/coverage-func.cov"
"func-test": "phpunit -c phpunit-func.xml --coverage-php build/coverage-func.cov",
"complete-pretty-test": [
"@test",
"@func-test",
"phpcov merge build --html build/html"
]
},
"config": {
"process-timeout": 0,