You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
i have an issue, which is (again) completlely not understandable for me :(
Starting Poing:
I have a working Filter:
issuetype = Test AND issueFunction in linkedIssuesOf("project in (PricingTool,Primus) and issuetype = Defect AND status in (New, Open, \"In Progress\", \"In Test\")")
This Filter works completly fine and shows me ALL the Testcases which are in the Defects
Now i want to have the same Style Filter which shows me all Sub Test Executions which are in the Defects. The Filter would be than (for me at least):
issuetype = "Sub Test Execution" AND issueFunction in linkedIssuesOf("project in (PricingTool,Primus) and issuetype = Defect AND status in (New, Open, \"In Progress\", \"In Test\")")
Only the issuetype should be changed from "Test" to "Sub Test Execution".
And there are Sub Test Executions within the Defects, i konw that.
Nevertheless the Result is empty!
Why ? :(
Thanks in advance
regards
Hello @Yagmur Gümüs
Welcome to the Atlassian community!
Can you provide a screen image for a Defect that show it has Sub Test Executions associated with it?
linkedIssuesOf will retrieve only issues that are directly linked to your Defect issues. If you Sub Test Execution issues are not directly linked to your Defect issues then the filter will have no results.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Based on your screen image of the Defect, the Sub Test Execution issues are connected as Sub-tasks (1), not linked issues (2).
You can't use linkedIssuesOf to retrieve Sub-tasks.
Instead you need to use subtasksOf.
issueFunction in subtasksOf("project in (PricingTool,Primus) and issuetype = Defect AND status in (New, Open, \"In Progress\", \"In Test\")")
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.