我的每个测试都在此文档字符串中有描述,如下所示:
def testExample(self):
"This is test example."
pass
从鼻子测试中运行时我可以看到它
$: nosetests --verbosity=3 --with-xunit -x
....
This is test example. ... ok
....
但它在鼻子的xunit格式xml输出文件(--with-xunit)中缺失,有什么方法可以让它在该文件中可用吗?或者任何其他插件都可以实现?
非常感谢!