Coverage report filtering by issues and label?
- 21 days ago
Hi,
Zephyr report logic is contained in the URL when the report is generated. Taking a look at how each URL is structured (for the reports you mentioned above) it seems possible to splice the two report criteria together to produce the results you need. For example, inside each URL you can see how the criteria is built...
Coverage report by label:
tql=testResult.projectId%20IN%20(99999)%20AND%20testCase.labelName%20IN%20(%22AUTO-TEST%22)&epicJQL=&title=Coverage%20ReportCoverage report by issues:
tql=testResult.projectId%20IN%20(10165)&epicJQL=&title=Coverage%20ReportResulting change might be something like this:
tql=testResult.projectId%20IN%20(99999)%20AND%20testCase.labelName%20IN%20(%22AUTO-TEST%22)&epicJQL=&title=Coverage%20ReportI've tested that the spliced report generates (it does) but not whether the data displayed is correct. Could you please let us know if this works for you?