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

from coverage import CoveragePlugin


class Plugin(CoveragePlugin):
    pass


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