zondor/codeception-paracept-json-merge
Composer 安装命令:
composer require zondor/codeception-paracept-json-merge
包简介
Codeception json reports merge for parallel run, can merge json reports into one , can generate html reports
README 文档
README
Codeception json reports merge for parallel run, can merge json reports into one , can generate html reports. Uses https://github.com/zondor/codeception-json-reporter
Installation
- Install Codeception via Composer
- Add
"zondor/codeception-paracept-json-merge": "~1.0"to yourcomposer.json - Run
composer install. - Edit your Robo.php file
$sources = [
'tests/_output/report_1.json',
'tests/_output/report_2.json',
'tests/_output/report_3.json',
];
$parallel = $this->taskMergeJsonReports()
->from($sources)
->into("tests/_output/result_FINAL.html")
->setOutputFormat('html')
->run();
$parallel = $this->taskMergeJsonReports()
->from($sources)
->into("tests/_output/result_FINAL.json")
->setOutputFormat('json')
->run();
统计信息
- 总下载量: 751
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-02-21