The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
  • Community
  • Q&A
  • Jira
  • Questions
  • I want to find combined execution report for 'Pass' and 'Blocked' execution Statuses. What should be

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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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 Champions.
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.