Publish Multiple Robot Test Results From Jenkins Pipeline
问题 I have a Jenkins 2.0 Pipeline script that runs a two separate suite of Robot tests. The script tries to publish both test suite results, however the publisher over-writes the first publish, with the last one. node('robot') { ... publishTestResults('journey') publishTestResults('regression') } void publishTestResults(String type) { step([ $class : 'hudson.plugins.robot.RobotPublisher', outputPath : 'portfolio-app\\target\\robot-output\\' + type, passThreshold : 100, unstableThreshold: 100,