I am using RIDE 1.3
using robotframework 2.8.7
running on Python 2.7.6
. To execute my test I use jybot. The Jython version is Jython 2.5.3
. I have an output XML generate from a previous run with failed cases. Now I need to selectively execute only the failed cases from the XML.
I have tried using the Command -R --rerunfailed [xml_path]
by inserting it in the arguments tab of RIDE. But this command is unrecognised by the editor so I use -R [xml_path]
instead which does not throw any errors.
Finally, when I start executing the suite I expect only the failed results from the suite to run but the entire suite runs as if the command has no effect. The suite from previous run and current run is same but the suite is large and output.xml
generated is huge (~100 MB)
.
How can I execute only failed cases?