Re: py.test and test coverage analysis ?

2008-04-06 Thread Osmo Salomaa
On ke, 2008-04-02 at 11:23 -0600, j vickroy wrote: > Could someone offer a suggestion on how to combine coverage analysis > with py.test. Use the '-x' option to coverage.py to run py.test, then '-rm' to view the results. I use about the following shell script; additionally I find some grepping o

Re: py.test and test coverage analysis ?

2008-04-06 Thread John J. Lee
j vickroy <[EMAIL PROTECTED]> writes: > Hello all, > > I am using py.test (http://codespeak.net/py/dist/test.html) to perform > unit testing. I would like to include test coverage analysis using > coverage.py (http://nedbatchelder.com/code/modules/coverage.html), but > I do not know how to simult

py.test and test coverage analysis ?

2008-04-02 Thread j vickroy
Hello all, I am using py.test (http://codespeak.net/py/dist/test.html) to perform unit testing. I would like to include test coverage analysis using coverage.py (http://nedbatchelder.com/code/modules/coverage.html), but I do not know how to simultaneously apply the two tools in a single run.