我使用composer.json
文件中定义的Composer脚本在我的应用程序中运行单元测试。
我的composer.json
:
{
"name": "my company/my_application",
"description": "Description of my application",
"license": "my licence",
"require": {
"php": ">=5.6",
"ext-soap": "*",
"ext-ssh2": "*",
"ext-curl": "*",
"ext-zip": "*",
"ext-pdo_mysql": "*",
"ext-gettext": "*",
"dusank/knapsack": "^9.0"
},
"require-dev": {
"ext-mysqli": "*",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "2.*"
},
"scripts": {
"test-php": "vendor/bin/phpunit --colors --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml",
}
}
我的命令是:
vendor/bin/phpunit --colors --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml tests/
如果我在终端内运行vendor/bin/phpunit --colors --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml tests/
,我可以看到彩色输出。但如果我使用Composer运行它,我就看不到任何颜色。
使用composer.json中定义的Composer脚本,如何显示phpunit颜色?
答案 0 :(得分:3)
要强制phpunit在任何情况下显示颜色,请将=always
添加到--color
参数。
使用
vendor/bin/phpunit --colors=always --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml tests/
在我的composer.json
文件中,我可以看到颜色。