diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -80,7 +80,13 @@ setup_args = dict( entry_points = { 'console_scripts': [ 'coverage = coverage:main', - ] + ], + 'pytest11': [ + 'coverage = coverage.runners.pytestplugin', + ], + 'nose.plugins.0.10': [ + 'coverage = coverage.runners.noseplugin:Coverage', + ], }, # We need to get HTML assets from our htmlfiles dir. |