Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

combination of coverage and profiler?

I really like the python coverage module:

http://nedbatchelder.com/code/coverage/

and the HTML pages it generates. Is there a combination of this and profiling so that one could see a unified HTML report of coverage+profiling.

Thanks in advance.

like image 558
reckoner Avatar asked Oct 13 '22 22:10

reckoner


1 Answers

Thanks, reckoner, glad that you like the HTML output from coverage. I've never done anything to combine it with a profiler, and haven't heard of anyone else doing it either.

When I created the HTML output, I had in the back of my mind the idea of having it be a generalized source-code-with-tool-annotations facility, but it was enough work just getting it built only for coverage!

like image 122
Ned Batchelder Avatar answered Oct 18 '22 02:10

Ned Batchelder