Releases: deblockt/cucumber-report-annotations-action
v1.17
v1.16
v1.15
What's Changed
Full Changelog: v1.14...v1.15
v1.14
add feature global summary report
Add step output
the following variable are availables as output (where output name if the json file name with ' ' replaced by '_' and wihout '.json'):
${output}_failed_scenarios: number of failed scenario
${output}_undefined_scenarios: number of undefined scenario
${output}_pending_scenarios: number of pending scenario
${output}_passed_scenarios: number of passed scenario
${output}_failed_steps: number of failed steps
${output}_undefined_steps: number of undefined steps
${output}_pending_steps: number of pending steps
${output}_passed_steps: number of passed steps
Add capability to fail job
The new parameter number-of-test-error-to-fail-job
can be used to fail job if there are a number of tests in error.
If the parameter value is -1, the job will not fail.
Fix issue when cucumber file is empty
Fix issue when cucumber file is empty
use new step summary, instead of annotation
see #33 for more details
fix performance issue when many steps fail in a large repository
on a large repository pervious version can take 20 minutes to generate the cucumber report when there are more than 100 error.