Forum Discussion
Thanks nmrao..
But any work around to achieve the same?
Jenkins job is to execute the command and it is done successfully. Why do you want to make it fail?
- Umesh18068 years agoNew Contributor
I've been triggering jenkins using a batch file which actually has testrunner.bat command.
And I wish to achieve is to help the end user to check the test case results only if there's jenkins failure. If not, user would consider the test case is executed successfully.
- Apoorva68 years agoFrequent Contributor
I am using similar way of integrating soapUI on jenkins. What I did is, I have assertions in all of my soapUI test steps, and with command line arguments, i am generating results for each step in the form testSuite-testCase-testStep.ok.txt for success and testSuite-testCase-testStep.Failed.txt for failed assertions.
Next is to use Console parser plugin, which can parse the console output. The above generated soapUI step result files can be passed to parser plugin to show build as failed (Red) or passed (Blue) status.