I have a list of tests executed within a test execution issue type. I need to write a query to list all the tests executed in the test execution along with their current execution status (Pass, Fail, Blocked or Aborted)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should refer to this documentation here: https://docs.getxray.app/display/XRAY/Enhanced+querying+with+JQL
and also here: https://docs.getxray.app/display/XRAY/Tutorial+for+querying+with+JQL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This jquery gives me the tests that have passed:
project in (xyz) AND issue in testExecutionTests("test execution id", 'fail')
Then I export the data in .csv and manually update the status to Fail since there is no column heading in Jira that lists the test execution status (from the test execution issue type).
I hope I'm making sense :)
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.