diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-06 17:25:54 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-06 17:25:54 -0400 |
commit | 8ad2ddf936df8d6083d481f59198af5008ce39f1 (patch) | |
tree | d7192fd716831a6c44ec040bc528f162795c0e77 /coverage/control.py | |
parent | 54a783eb61b6b73f2de7766456311647981919cd (diff) | |
download | python-coveragepy-git-8ad2ddf936df8d6083d481f59198af5008ce39f1.tar.gz |
Context-switching plugins should be listed in debug output
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py index 1a31bba8..474b8682 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -946,6 +946,7 @@ class Coverage(object): ('CTracer', 'available' if CTracer else "unavailable"), ('plugins.file_tracers', plugin_info(self._plugins.file_tracers)), ('plugins.configurers', plugin_info(self._plugins.configurers)), + ('plugins.context_switchers', plugin_info(self._plugins.context_switchers)), ('configs_attempted', self.config.attempted_config_files), ('configs_read', self.config.config_files_read), ('config_file', self.config.config_file), |