Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to convert a Cobertura XML into an HTML report?

I have a XML file generated in a test. Is there a way to convert it to a HTML report ala Jenkins?

like image 943
Leprosy Avatar asked Apr 02 '13 17:04

Leprosy


People also ask

Can we convert XML to HTML?

Users can also convert XML File to HTML by uploading the file. XML to HTML Online works well on Windows, MAC, Linux, Chrome, Firefox, Edge, and Safari.

What is cobertura XML?

Cobertura is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage.


1 Answers

pycobertura can take coverage.xml and convert it into reasonable-looking HTML. I'm using it with some Erlang source code right now.

like image 126
Roger Lipscombe Avatar answered Oct 06 '22 08:10

Roger Lipscombe