summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-10-06 17:25:54 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-10-06 17:25:54 -0400
commit8ad2ddf936df8d6083d481f59198af5008ce39f1 (patch)
treed7192fd716831a6c44ec040bc528f162795c0e77
parent54a783eb61b6b73f2de7766456311647981919cd (diff)
downloadpython-coveragepy-git-8ad2ddf936df8d6083d481f59198af5008ce39f1.tar.gz
Context-switching plugins should be listed in debug output
-rw-r--r--coverage/control.py1
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),