TeamCity 上的 Python 集成测试

发布于 2024-11-14 11:18:31 字数 99 浏览 2 评论 0原文

我有一组在 TeamCity 上运行的 Python 测试。我能够运行测试,但无法让 TeamCity 生成测试报告。如何让 TeamCity 生成我的测试报告?

谢谢

I have a set of Python tests that run on TeamCity. I am able to get the test to run, however I cannot get TeamCity to produce a test report. How can I get TeamCity to produce a report of my tests?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

奢望 2024-11-21 11:18:31

您可以从 PyPI 安装 teamcity-messages。此时,您可以创建一个简单的脚本,该脚本将复制内置的单元测试脚本,具有用于发现、测试模式等的所有相同选项,但使用 TeamCity 运行程序。该运行程序将输出测试消息,以便 TeamCity 能够理解并报告它们。

from teamcity.unittestpy import TeamcityTestRunner
import unittest

if __name__ == '__main__':
    unittest.main(testRunner=TeamcityTestRunner())

You can install teamcity-messages from PyPI. At that point, you can create a simple script that will replicate the built-in unittest script, with all the same options for discovery, test patterns, etc., but with the TeamCity runner. That runner will output test messages such that TeamCity will understand and report them.

from teamcity.unittestpy import TeamcityTestRunner
import unittest

if __name__ == '__main__':
    unittest.main(testRunner=TeamcityTestRunner())
2024-11-21 11:18:31

您是否看到了 TeamCity for Python/Django 持续集成 问题?我认为它有你需要的东西。

Did you see the question TeamCity for Python/Django continuous integration ? I think it has what you need.

自由范儿 2024-11-21 11:18:31

测试报告将由测试运行程序而不是 TeamCity 生成。 TeamCity 将仅查看生成的测试报告并将其用于显示已通过测试的信息等目的。

The test reports are to be generated by the test runner, not TeamCity. TeamCity will only look at the test report generated and use it for purposes like displaying info on the tests passed etc.

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