I am trying to find some bug issue which failed the testing in the first round and may pass at the end. As fail testing is a status in Jira not a field, so I don't know how could create a JQL to find it out? Thank you!
Hello @Kory Zhu
Since you mention that "As fail testing is a status in Jira not a field" thus if it's a status then you can simply write a JQL
type=bug and status = "Fail Testing"
In the status field you can write the name of the exact status.
Hi @Tarun Sapra & @Kory Zhu,
if your workflow for issue type bug contains an existing status "fail testing" and it was in status "fail testing" the jql would be:
status was ("fail testing")
Otherwise it could be possible that you are using a third party plugin for test management? This would need another resolution. Please ellaborate @Kory Zhu.
Best wishes
Chris (STAGIL)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Christopher Jaksch
The JQL query which you have shared uses the "was" operator, this will result in all the issues which were "failing test".
Let's suppose 2 weeks ago issues were failing but now are passed. May be that's what the requester @Kory Zhu wants, to basically query all the issues "historically" but if it's required to fetch only issues which have current status is "fail testing" then "=" operator has to be used in JQL instead of "was".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.