I want to update results for test suit without using CI server how can we achieve that i have tried both option REST API(able to update the individual automated test result ) and Test Result collection Tool but able to uplate the test suit result .
Problem:
RES API :- payload xml format don't have test suit element to update the result or we dnt have any REST API to update the test suit result.
Test Result Collection tool :- though i am getting successful msg "Test result from file 'Result.xml' was pushed to server" but still test suit run report is not updated:
Junit XML payload:
<?xml version="1.0"?>
<testsuites xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<testsuite name = "DemoTestSuit" timestamp="2020-04-14T12:12:12" tests="2" failures="0" errors="0" >
<testcase name="Regression_TC05_test_name" classname="DemoTestSuit\Regression_TC05" time="80" status="pass">
</testcase>
<testcase name="Regression_TC06_test_name" classname="DemoTestSuit\Regression_TC06" time="70" status="pass">
</testcase>
</testsuite>
</testsuites>
Kindly do needful