Reputation: 161
I am trying to get a step by step soap tests report into jenkins. I have added the soapui testrunner in the jenkins command link, see below:
start "" "C:\Program Files (x86)\SmartBear\SoapUI-5.2.1\bin\testrunner.bat" -r -a -j -"C:\Users\cverma\Desktop\QA-soapui-project.xml"
I would like to know where does it save the junit report? I would like to publish the report in jenkins. I am adding the *.xml into the post build junit unit report but no luck with the report...
Upvotes: 0
Views: 2450
Reputation: 36
You can use Summary Display Plugin
for publishing the test report, see https://wiki.jenkins-ci.org/display/JENKINS/Summary+Display+Plugin.
The report will be stored in the workspace or in the execution directory.
Upvotes: 2