Customize Python unittest report with HTML or 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?
testoob should support your reporting requirements (not sure whether it supports textile
reporting, but it definitely does support HTML reporting).
I ended up using HTMLTestRunner, such a great and simple tool.
精彩评论