1

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 and xunit 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?
4

2 に答える 2

3

現在、Nose は xunit をネイティブにサポートしています。

ノーズは組み込みプラグインを使用した xunit 出力をサポートしています。 --with-xunit を試してみてください。

Oleksiyから、https://stackoverflow.com/a/20750012/311901

于 2016-06-09T15:52:51.077 に答える
1

これは鼻のプラグインです。あなたはそれをインストールすることができます

pip install NoseXUnit

ここのドキュメントを読んでください: http://nosexunit.sourceforge.net/ . これは、プラグインを実行するのに役立ちます

于 2013-08-01T06:42:05.003 に答える