Hi Guys
We are using Xray for our Testmanagement. I set a version in the field fix version for the issue types test plan and test executions. Now the issues of these types are being displayed in the release version (and release notes).
Is there a possibility to change the filter for the releases, that issue types for test plan, test executioen, do not appear in the releases?
Kind Regards
Aleks
Hi Allen,
you use 2 times status field. Please try this jql:
issuetype in ("Convert Logo","logo") AND assignee = currentUser() AND status in (Open, "In Progress", Reopened) ORDER BY summary ASC
it should automatically exclude issues in Complete status
That worked! Thank you.
I had originally used:
issuetype = "Convert Logo" OR issuetype = logo AND assignee = currentUser() AND status in (Open, "In Progress", Reopened) ORDER BY summary ASC
...with no success. That's when I tried explicitly telling to not include Complete.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, the error in your original query wasn't to use twice the status field but not putting the "OR" expression in brackets.
(issuetype = "Convert Logo" OR issuetype = logo) AND assignee = currentUser() AND status in (Open, "In Progress", Reopened) AND status not in (Complete) ORDER BY summary ASC
However, Michal query looks much nicer still
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.