summaryrefslogtreecommitdiff
path: root/tests/modules/plugins/another.py
blob: 2a9910d0ca812c340e4a2956d1f40fca255277f6 (plain)
1
2
3
4
5
6
7
8
9
"""A plugin for tests to reference."""

from coverage import CoveragePlugin

class Plugin(CoveragePlugin):
    pass

def coverage_init(reg, options):
    reg.add_file_tracer(Plugin())