zondor / codeception-paracept-json-merge
Codeception json reports merge for parallel run, can merge json reports into one , can generate html reports
1.1.1
2016-04-29 07:40 UTC
Requires
- codegyre/robo: ^0.6
- zondor/codeception-json-reporter: ^1.0
Requires (Dev)
- codeception/codeception: ~2.0
This package is not auto-updated.
Last update: 2025-01-04 20:04:21 UTC
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();