I have some tests I would like to run with nosetests
and generate junit xml
results. As far as I know, this is not possible by the default installation of nosetests, as it only produced xunit
xml files.
However, nose plugins exist which can do various things, among them a code snippet to be use to create junit
xml output.
My questions:
- What are the differences between
junit
andxunit
xml results? Are they basically different and incompatible? - How to install or use the junitxml plugin code in the link I mentioned above? Maybe there is a different way to create junit output?