On Sun, Jan 4, 2009 at 9:35 PM, Hussein B <hubaghd...@gmail.com> wrote:
> What is the best code coverage tool available for Python?

I like ot use nose with it's coverage plugin.

easy_install nose
easy_install co

And I use the following in my top-level Makefile

tests:
   @nosetests \
      --with-coverage \
      --cover-package=circuits \
      --cover-erase \
      --cover-inclusive \
      --with-doctest


cheers
James
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to