/usr/lib/python3/dist-packages/nose_cov.py is in python3-nose-cov 1.6-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | """Coverage plugin for nose."""
import logging
from nose.plugins.base import Plugin
log = logging.getLogger(__name__)
class Cov(Plugin):
"""Activate cov plugin to generate coverage reports"""
score = 200
status = {}
def options(self, parser, env):
"""Add options to control coverage."""
log.debug('nose-cov options')
Plugin.options(self, parser, env)
parser.add_option('--cov', action='append', default=env.get('NOSE_COV', []), metavar='PATH',
dest='cov_source',
help=('Measure coverage for filesystem path '
'[NOSE_COV]'))
parser.add_option('--cov-report', action='append', default=env.get('NOSE_COV_REPORT', []), metavar='TYPE',
choices=['term', 'term-missing', 'annotate', 'html', 'xml'],
dest='cov_report',
help=('Generate selected reports, available types: term, term-missing, annotate, html, xml '
'[NOSE_COV_REPORT]'))
parser.add_option('--cov-config', action='store', default=env.get('NOSE_COV_CONFIG', '.coveragerc'), metavar='FILE',
dest='cov_config',
help=('Config file for coverage, default: .coveragerc '
'[NOSE_COV_CONFIG]'))
def configure(self, options, config):
"""Activate coverage plugin if appropriate."""
log.debug('nose-cov configure')
try:
self.status.pop('active')
except KeyError:
pass
Plugin.configure(self, options, config)
if self.enabled and not config.worker:
self.status['active'] = True
self.cov_source = options.cov_source or ['.']
self.cov_report = options.cov_report or ['term']
self.cov_config = options.cov_config
else:
self.enabled = False
def begin(self):
"""Erase any previous coverage data and start coverage."""
import cov_core
log.debug('nose-cov begin')
self.cov_controller = cov_core.Central(self.cov_source, self.cov_report, self.cov_config)
self.cov_controller.start()
def report(self, stream):
"""Produce coverage reports."""
log.debug('nose-cov report')
self.cov_controller.finish()
self.cov_controller.summary(stream)
|