Search code examples
cucumbercucumber-junitextentreports

How to consolidate cucumber reports generated by cucumber-jvm-parallel plugin


We are using cucumber-jvm-parallel plugin for automatic cucumber runners generation.

It generates cucumber report in folders like- 1,2,3 based on number of runners. a) I would like to merge these reports into one. b) as suggested on below link, I have configured a set-up, but its not generating extent report https://github.com/temyers/cucumber-jvm-parallel-plugin/tree/master/src/it/junit/extents-report

c) Jenkins is also unable to publish a report, for any of the runner I tried

**/*.json 
/target/cucumber-parallel/**/*.json
/target/cucumber-parallel/*.json
/target/*.json
/target/**.json

Please suggest Thanks


Solution

  • Take a look at Donut Report.

    It has both a Maven plugin and Jenkins plugin available, and is able to combine multiple Cucumber json reports. It can also report on unit test results to provide a unified report of your test coverage.