Re: Code coverage to Python code

2009-01-05 Thread Kay Schluehr
On 4 Jan., 12:35, Hussein B 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

Re: Code coverage to Python code

2009-01-04 Thread James Mills
On Sun, Jan 4, 2009 at 9:35 PM, Hussein B 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 \ --c

Re: Code coverage to Python code

2009-01-04 Thread David Stanek
On Sun, Jan 4, 2009 at 9:26 PM, Roy Smith wrote: > In article , > Robert Kern 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 with Ned

Re: Code coverage to Python code

2009-01-04 Thread Roy Smith
In article , Robert Kern 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 with Ned Batchelder's coverage.py module today. Once I stopped screwi

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 atte

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

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