khelll
khelll

Reputation: 24020

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:

  1. Customize the report of test run.
  2. Export it as HTML or Textile document.

Any ideas?

Upvotes: 2

Views: 1563

Answers (2)

khelll
khelll

Reputation: 24020

I ended up using HTMLTestRunner, such a great and simple tool.

Upvotes: 2

Alex Martelli
Alex Martelli

Reputation: 882751

testoob should support your reporting requirements (not sure whether it supports textile reporting, but it definitely does support HTML reporting).

Upvotes: 3

Related Questions