Export 'All Pending Test Runs' to Excel

Thursday, November 21, 2019
Avatar

Hi,

Is there a way to export 'All Pending Test Runs' to Excel.

I would like to have an overview in Excel of the all the pending test runs, so I can filter on 'Tester', 'Progress', 'Test Failed', etc...

BR,
Vincent 

 

1 Replies
Tuesday, November 26, 2019
Avatar
re: vpottie Thursday, November 21, 2019

Hi Vincent

You could create a custom Excel report using this Entity SQL:

select value R from SpiraTestEntities.R_TestRuns as R
where R.PROJECT_ID = ${ProjectId}
and R.TEST_RUNS_PENDING_ID IS NOT NULL and R.IS_DELETED = False

Regards

David

Spira Helps You Deliver Quality Software, Faster and With Lower Risk

And if you have any questions, please email or call us at +1 (202) 558-6885

 

Statistics
  • Started: Thursday, November 21, 2019
  • Last Reply: Tuesday, November 26, 2019
  • Replies: 1
  • Views: 1031