Hey there,
in our Jira projects we have tickets of the type Feature and of the type Test. Tests are linked to Features via a "tests / is tested by" link. Now in our CI Pipeline in Bamboo, we want to execute a certain set of Tests which can be characterized like this:
I want to create this set of Tests as a filter in Jira. We have ScriptRunner installed, so I'm trying to create a nested query for this, but I just can't wrap my head around how to do this.
Can anyone maybe point me in the right direction?
Thank you in advance!
Alex
Try this
issuetype = Test and status = 'In Use' and issueFunction in linkedIssuesOf('issuetype=feature and status=Done','is tested by')
I hope I got all the values right.
Works like a charm, thank you so much for taking the effort! I was thinking way too complicated, ha :D
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.