I need to get rails test published report in XML and HTML since Azure DevOps only accepts this two format. I tried simplecov but it generates .json and HTML format. I also tried simplecov-cobertura but it generates XML only.
I tried the multi-format option for simplecov
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([SimpleCov::Formatter::HTMLFormatter,
SimpleCov::Formatter::XMLFormatter])
But it's causing an error uninitialized constant SimpleCov::Formatter::XMLFormatter
What are other options or libraries do u suggest to generate reports coverage for rails?