Updated composer check to ru functional tests too

This commit is contained in:
Alejandro Celaya
2017-10-23 11:29:37 +02:00
parent c2feffa50c
commit c522879c64
4 changed files with 20 additions and 14 deletions

View File

@@ -82,14 +82,15 @@
"scripts": {
"check": [
"@cs",
"@test"
"@test",
"@func-test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8000 -t public/",
"test": "phpunit --coverage-clover build/clover.xml",
"test": "phpunit --coverage-clover build/unit-clover.xml",
"pretty-test": "phpunit --coverage-html build/coverage",
"func-test": "phpunit -c phpunit-func.xml"
"func-test": "phpunit -c phpunit-func.xml --coverage-clover build/func-clover.xml"
},
"config": {
"process-timeout": 0,