python nose:如何在xunit格式的xml文件中提供测试描述?

时间:2014-08-14 08:21:22

标签: python nose nosetests

我的每个测试都在此文档字符串中有描述,如下所示:

def testExample(self):
    "This is test example."
    pass

从鼻子测试中运行时我可以看到它

$: nosetests --verbosity=3 --with-xunit -x
....
This is test example. ... ok
....

但它在鼻子的xunit格式xml输出文件(--with-xunit)中缺失,有什么方法可以让它在该文件中可用吗?或者任何其他插件都可以实现?

非常感谢!

0 个答案:

没有答案