Inflectra Customer Forums: Automatic status on test set (Thread) Hello, We are running an automated test suite where we have a Spira Team addin, which reports the status of each of the test cases after the execution is complete. Our solution uses the web services to report the test case statuses; TestRun_RecordAutomated2 more specifically. But once the full automation suite has been completed, we want the status of the test set (where the test cases are located) to change appropriately. How is this done? Right now, all of the test cases have their statuses filled out, but nothing happens with the Test Set status when the execution is complete. If possible it would also be nice to be able to set the Test Set status to "In progress" when Jenkins starts the test set. We are executing the test cases from an automated environment, triggered by Jenkins. So no direct manipulation from Spira Team, other than that Jenkins is asking which Test Set is to be run. Our test cases is programmed in C#. Kind regards, John Lunde Flennmark Consafe Logistics en-US(C) Copyright 2006-2024 Inflectra Corporation.support@inflectra.com/Computers/Software/Project_Management//Computers/Software/Quality_Assurance/KronoDesksupport@inflectra.comhttp://www.inflectra.com/kronodesk/forums/threads120/Support/Forum/spirateam/issues-questions/851.aspxthreadId=851John Lunde Flennmark (john.lundeflenmark@se.consafelogistics.com)Automatic status on test set Hello, We are running an automated test suite where we have a Spira Team addin, which reports the status of each of the test cases after the execution is complete. Our solution uses the web services to report the test case statuses; TestRun_RecordAutomated2 more specifically. But once the full automation suite has been completed, we want the status of the test set (where the test cases are located) to change appropriately. How is this done? Right now, all of the test cases have their statuses filled out, but nothing happens with the Test Set status when the execution is complete. If possible it would also be nice to be able to set the Test Set status to "In progress" when Jenkins starts the test set. We are executing the test cases from an automated environment, triggered by Jenkins. So no direct manipulation from Spira Team, other than that Jenkins is asking which Test Set is to be run. Our test cases is programmed in C#. Kind regards, John Lunde Flennmark Consafe Logistics Mon, 03 Mar 2014 14:02:13 -05002014-03-06T16:34:13-05:00/Support/Forum/spirateam/issues-questions/851.aspxmessageId=1555Inflectra Sarah (donotreply6@kronodesk.net) Hi John Lunde All you need to do is call the TestSet_Update (...) function to change the st Hi John Lunde All you need to do is call the TestSet_Update (...) function to change the status of the overall test set. Just do a TestSet_RetrieveById(...) first to get the current version, then change the status and send it back. the allowed status values are: public enum TestSetStatus { NotStarted = 1, InProgress = 2, Completed = 3, Blocked = 4, Deferred = 5 } Regards Sarah Thu, 06 Mar 2014 16:34:13 -05002014-03-06T16:34:13-05:00/Support/Forum/spirateam/issues-questions/851.aspx#reply1555