Akash
Akash

Reputation: 295

Good ways to visualize code coverage results

I have a large codebase in Python, and a large number of test cases. My code coverage results (just statement coverage) are of the format file-linenumber -> testcases that cover this line.

What would be a good way to immediately visualize this data? Is there some module in Python (or any other language) that would accept the results that I have and visualize the data easily? I don't mind if the visualization/analysis tool costs money.

Upvotes: 5

Views: 2470

Answers (2)

Dima Tisnek
Dima Tisnek

Reputation: 11779

Jenkins includes simple visualization with htmlpublisher (?) plugin.

Upvotes: 1

Jimbo Mombasa
Jimbo Mombasa

Reputation: 528

Latest PyCharm (EAP of 2.0 - http://blog.jetbrains.com/pycharm/2011/10/new-pycharm-2-0-eap-build-cython-coffeescript-code-coverage/) features a code coverage UI

Upvotes: 2

Related Questions