如何使用nosetests输出覆盖率XML?

发布于 2024-10-12 19:38:53 字数 205 浏览 9 评论 0原文

我正在尝试输出鼻子测试的覆盖范围 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小忆控 2024-10-19 19:38:54

运行 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 run coverage xml, it will create a Cobertura-compatible XML file from the .coverage file.

贩梦商人 2024-10-19 19:38:54

有一个为 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文