Skip to main content

Check that your tests generate these reports and that you add them to CI

 When we start running tests on CI, we must generate and add reports.


All CIs are different and look different. But in each CI, it's necessary to do this so that you can see the test statistics. So that these tests can be seen at all.

There are many types of reports. Personally, I really like JUnit XML in particular. It is universal, and all CIs understand it.
These reports contain all the information about the test: title, error, how long the test was running. And then it's all very easy to see and analyze. Also, thanks to these reports, CI builds and shows the history of the test. (Apart from these reports, of course, you can generate others too.)


________________________________








Comments