I'm wondering if it's possible to combine coverage.xml
files into 1 file to see global report in HTML output.
I've got my unit/functional tests
running as 1 command and integration tests
as the second command. That means my coverage for unit/functional tests
are overridden by unit tests
.
That would be great if I had some solution for that problem, mainly by combining those files into 1 file.
coverage combine
will merge all.coverage_*
files in a directory and create a combined.coverage
file and delete the others. Only needed when merging different directories. – Sarcomatosis