NoseXUnit used to be able to generate Clover-compatible xml files, but it is no longer maintained, and does not work with recent versions of Nose.
How can one generate Clover-compatible (Bamboo) xml which includes coverage data nowadays?
NoseXUnit used to be able to generate Clover-compatible xml files, but it is no longer maintained, and does not work with recent versions of Nose.
How can one generate Clover-compatible (Bamboo) xml which includes coverage data nowadays?
To my knowledge nose can only output Cobertura format. This is done by passing --with-coverage
and --cover-xml
nose coverage options. You can then use coverage2clover utility to convert coverage.py xml report to Atlassian Clover test report format understood by Bamboo.