views:

25

answers:

1

I have installed nose for python 2.6 and it works fine , but I was trying use the --cover-html option to generate a html report. I typed the following command from the commandline

nosetests --cover-html

and nothing happend , it ran the tests but did not generate the html. Am i missing something ? I have python 2.6 , nose 0.11.3 , running on windows xp sp3

Any help would be appreciated

A: 

You also need the --with-cover option to enable the coverage plugin in the first place.

Ned Batchelder