I have a test suite "my_test_suite.robot" like this:
*** Test Cases ***
Test Case 1
Log Test 1
Test Case 2
Log Test 2
Then I run the pybot command twice as like this:
pybot --timestampoutputs my_test_suite.robot
So I get the reports two times. Now after that I ran the rebot command as follows:
rebot --name RebotCombined *.xml
It produced the neat combined report.html file where the high-level test suite is RebotCombined and two child test suites with the same name as "My Test Suite". i.e.,
RebotCombined
|
--- My Test Suite
| |
| --- Test Case 1
| --- Test Case 2
--- My Test Suite
| |
| --- Test Case 1
| --- Test Case 2
But what I was expecting is:
RebotCombined
|
--- My Test Suite
| |
| --- Test Case 1
| --- Test Case 1
| --- Test Case 2
| --- Test Case 2
How can I achieve this?
Test Case 1twice. However, in the "what I was expecting" section you show the test case listed only once. How does rebot decide which test case to show in the merged report? Or do you actually expect to seeTest Case 1twice in the merged report?