I want to set up notifications in slack through Jenkins using pabot(parallel run of robot framework tests).
I have already configured Jenkins to output the pass/failure/skip notifications when using robot, but once I change it to pabot the notification no long appears in my slack channel.
This command runs successfully and my slack channel is notified of the tests that pass/fail/skip
robot -A Config/Config.args -d results -v REMOTE_URL:http://dummy:0000/wd/hub Tests
On the other hand this command alerts my channel that the build has commenced but nothing after that
pabot -A Config/Config.args -d results -v REMOTE_URL:http://dummy:0000/wd/hub Tests
In the directory the a pabot_results file is created which is different to the build with the robot command. But the output.xml, log.html and report.html files include the expected results.
I want the basic pass/fail/skip to appear in the slack channel for parallel run test. At the minute no test results are appearing in the slack channel.