Hi All,
I am trying to filter out JIRA-Zephyr test cases which are having the summary as below.
Abc-efg-02-pqrst-XXXXX
Requirement is to list out all test cases which are having summary as Abc-efg-02-pqrst-
I have written below JQLs and trying to execute them. But none of them is returning expected results.
project = XYZ AND issuetype = Test and summary ~ "Abc-efg-02-pqrst-*"
project = XYZ AND issuetype = Test and summary ~ "Abc?efg?02?pqrst-*"
project = XYZ AND issuetype = Test and summary ~ "Abc\-efg\-02\-pqrst-*"
project = XYZ AND issuetype = Test and summary ~ "Abc\\-efg\\-02\\-pqrst-*"
Can someone pls help.
Hello,
I think there's a bug with regards to this. I found a ticket below:
https://jira.atlassian.com/browse/JRASERVER-47276
But for now, as a workaround to your use case which lists out all test cases which are having summary as Abc-efg-02-pqrst-, I would suggest using the following JQL:
project = XYZ AND issuetype = Test and summary ~ "Abc AND efg-02-pqrst-*"
Hope this helps =)
Best regards,
Lenard
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.