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
Hello,
I'm trying to perform a search in jql to find all tests from the last month that don't have a test plan associated with them.
I have searched and found the following commands: testsWithNoTestSet, testsWithoutTestExecution... But I would need something similar to testsWithoutPlanTest, but that doesn't exist... is there any other way?
This is the current code:
type = Test AND created >= startOfMonth(-1) ORDER BY key ASC
I still can't get it. My intention is only show the tests (of all my project) that do not have a test plan associated...
Thanks!
HI @Mikel44
Are you using a specific test app from the marketplace in your instance, if so which one?
Is there any information in there documentation on JQL options that can be used?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI @Mikel44
Are you using a specific test app from the marketplace in your instance, if so which one?
Is there any information in there documentation on JQL options that can be used?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mikel44
Have you try to save your filter "type = Test AND created >= startOfMonth(-1) ORDER BY key ASC with name "MonthTests"
Then run another query
type = Test AND created >= startOfMonth(-1) and issue not in testPlanTests("MonthTests")
Regards
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.
Can you try to save a filter with this query (eg, name it AllTestPlan)
type = "Test Plan"
Then do another query with
type = Test AND created >= startOfMonth(-1) and issue not in testPlanTests("AllTestPlan")
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mikel44 ,
Welcome to atlassian community!
Please find the below JQL.
project = "XYZ" AND issuetype = Test AND created >= startOfMonth(-1) AND created <= endOfMonth(-1) AND issue not in testExecution("status = PASS OR status = FAIL")
Kindly let me know, Is the JQL worked properly or not..?
I will try one more JQL.
Regards,
Sanjen Bariki
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.