How to compare two robot results on Jenkins

Suppose I run 100 test boxes on Jenkins using the Robot Framework on day 1, and 10 cases fail.
And the next day I launch the same 100 cases, but now 15 cases fail.

So, I want to know which new test cases fail on day 2. Can anyone suggest a way to do this?

+4
source share
1 answer

The simplest way would be to split the two generated output.xml files and see what is different. Several command line tools can help you with this.

, robotdiff python script, . , .

, - , , . , SQL, . DbBot output.xml .

+2

Source: https://habr.com/ru/post/1664374/


All Articles