使用 HTML 或 Textile 自定义 Python 单元测试报告
我正在使用 unittest 来测试我的 python 代码。我正在寻找一种可以执行以下操作的方法:
- 自定义测试运行的报告。
- 将其导出为 HTML 或 Textile 文档。
有什么想法吗?
I'm using unittest for testing my python code. I'm seeking a way that I can do the following:
- Customize the report of test run.
- Export it as HTML or Textile document.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
testoob 应该支持您的报告要求(不确定它是否支持
textile
报告,但它绝对支持 HTML 报告)。testoob should support your reporting requirements (not sure whether it supports
textile
reporting, but it definitely does support HTML reporting).我最终使用了 HTMLTestRunner,这是一个非常棒且简单的工具。
I ended up using HTMLTestRunner, such a great and simple tool.