Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

I want to find combined execution report for 'Pass' and 'Blocked' execution Statuses. What should be

Smit Belani March 15, 2021

I want to find combined execution report for 'Pass' and 'Blocked' execution Statuses. What should be the ZQL?

2 answers

2 accepted

3 votes
Answer accepted
jagadeesh madhura
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 15, 2021

@Smit Belani  You can navigate to search test execution page and try any of the below zql queries 

project = "XYZ" AND executionStatus in (Blocked, Pass)

or

project = "XYZ" AND (executionStatus = Blocked OR executionStatus = Pass)

Smit Belani March 16, 2021

Thanks @jagadeesh madhura executionStatus in (Blocked, Pass) worked.

2 votes
Answer accepted
chirayu0104
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 15, 2021

You can just add this with your current query - 

"AND executionStatus in (PASS, BLOCKED)"

Smit Belani March 16, 2021

Thanks @chirayu0104 executionStatus in (Blocked, Pass) worked.

Suggest an answer

Log in or Sign up to answer