diff options
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py index 8ae96fcf..5724a938 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -301,6 +301,10 @@ class Coverage(object): if self.debug.should('sys'): self.debug.write_formatted_info("sys", self.sysinfo()) + for plugin in self.plugins: + header = "sys: " + plugin.plugin_name + info = plugin.sysinfo() + self.debug.write_formatted_info(header, info) wrote_any = True if wrote_any: |