如何使用nosetests输出覆盖率XML?
我正在尝试输出鼻子测试的覆盖范围 XML,以便它们显示在 Hudson 上。我正在执行的行是:
nosetests --with-gae -v --all-modules --with-xunit --with-coverage
我在控制台中看到覆盖率输出,但没有包含覆盖率数据的 xml 文件。我怎样才能让它输出覆盖率xml?
I'm trying to output the coverage XML of my nosetests so they show up on Hudson. The line I'm executing is:
nosetests --with-gae -v --all-modules --with-xunit --with-coverage
I see the coverage output in the console, but there's no xml file containing the coverage data. How can I get it to output the coverage xml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
运行
nosetests
命令后,目录中将出现一个.coverage
数据文件。如果您随后运行coverage xml
,它将从.coverage
文件创建一个与 Cobertura 兼容的 XML 文件。Once you've run the
nosetests
command, there will be a.coverage
data file in the directory. If you then runcoverage xml
, it will create a Cobertura-compatible XML file from the.coverage
file.有一个为
nosetests
编写的插件可以做到这一点。安装此软件包后,您只需添加
--with-xcoverage
即可。它可以在以下位置找到:https://github.com/cmheisel/nose-xcover
There is a plugin written for
nosetests
to do just this.You just have to add
--with-xcoverage
once this package is installed. It can be found at:https://github.com/cmheisel/nose-xcover