diff options
Diffstat (limited to 'tests/modules/plugins/another.py')
-rw-r--r-- | tests/modules/plugins/another.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py index 2ff84dac..65627515 100644 --- a/tests/modules/plugins/another.py +++ b/tests/modules/plugins/another.py @@ -4,3 +4,6 @@ from coverage import CoveragePlugin class Plugin(CoveragePlugin): pass + +def coverage_init(reg, options): + reg.add_file_tracer(Plugin(options)) |