Reputation: 508
i have a --rerunfailed pybot for rerunning failed cases however the final report is always being shown as report.html
i need to have a custom name instead of the report
pybot --noncritical mayFail --suitestatlevel 2 --output "report_details/reportdetail".xml --log "report_details/reportlog".html --report "testreport".html \
--argumentfile "$DIR/../../web.args" || pybot --**rerunfailed** "report_details/firstreport.xml" --noncritical mayFail --suitestatlevel 2 --output "report_details/reportrerun.xml" --log "report_details/reportlog".html --report "testreport.html" \
--argumentfile "$DIR/../../web.args" || rebot --merge "report_details/firstreport.xml" "report_details/reportrerun.xml" --name "test.html"
if i do not use (--name "test.html") or (--output "test.html") in the merge i get the report with name report.html
in the above example instead of test.html i get the following error
[error] reading xml source '--name' failed : no such file or directory
i also tried -r -> same error as previous
Upvotes: 0
Views: 1189