Re: Code coverage to Python code

2009-01-05 Thread Kay Schluehr
On 4 Jan., 12:35, Hussein B hubaghd...@gmail.com wrote: Hey, What is the best code coverage tool available for Python? Thanks. It depends. What are your requirements? -- http://mail.python.org/mailman/listinfo/python-list

Code coverage to Python code

2009-01-04 Thread Hussein B
Hey, What is the best code coverage tool available for Python? Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: Code coverage to Python code

2009-01-04 Thread skip
Hussein What is the best code coverage tool available for Python? Probably Ned Batchelders coverage.py. There is a trace.py module which comes with Python as well. -- Skip Montanaro - s...@pobox.com - http://smontanaro.dyndns.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Code coverage to Python code

2009-01-04 Thread Robert Kern
Hussein B wrote: Hey, What is the best code coverage tool available for Python? I like Titus Brown's figleaf. http://darcs.idyll.org/~t/projects/figleaf/doc/ -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad

Re: Code coverage to Python code

2009-01-04 Thread Roy Smith
In article mailman.6574.1231108877.3487.python-l...@python.org, Robert Kern robert.k...@gmail.com wrote: Hussein B wrote: Hey, What is the best code coverage tool available for Python? I like Titus Brown's figleaf. http://darcs.idyll.org/~t/projects/figleaf/doc/ I was playing

Re: Code coverage to Python code

2009-01-04 Thread David Stanek
On Sun, Jan 4, 2009 at 9:26 PM, Roy Smith r...@panix.com wrote: In article mailman.6574.1231108877.3487.python-l...@python.org, Robert Kern robert.k...@gmail.com wrote: Hussein B wrote: Hey, What is the best code coverage tool available for Python? I like Titus Brown's figleaf. http

Re: Code coverage to Python code

2009-01-04 Thread James Mills
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