Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

aggregate the reports from different robot testsuites

I have different test suites in different directories. I use a script to run all these tests in one shot. Now I want to view the report of all these test suites in some aggregated way. What is the best way to aggregate these reports of different test suites(from different directories) in robot?

like image 525
Ajay Avatar asked May 13 '13 09:05

Ajay


1 Answers

Robot comes with a tool called "rebot" for combining test results into a single report.

For example, to combine "output1.xml" and "output2.xml" into a single log and report file, you would do something like this:

rebot output1.xml output2.xml

For more information see Using rebot tool in the robot user guide

like image 84
Bryan Oakley Avatar answered Oct 13 '22 19:10

Bryan Oakley