diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-02 12:39:20 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-02 12:39:20 -0500 |
commit | 67e4df6c341e3e4e7eaa7ca33bbc236b62ea177c (patch) | |
tree | 3c3a6e7335b3c2c1302d0fff8e0296c0480c70a7 /coverage/control.py | |
parent | e8d329fb092e644e726578ebc3d6167c84d30914 (diff) | |
download | python-coveragepy-git-67e4df6c341e3e4e7eaa7ca33bbc236b62ea177c.tar.gz |
debug sys shows the config files attempted, and the config files read.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py index 4312f68c..c7c6950a 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -656,7 +656,8 @@ class coverage(object): ('cover_dir', self.cover_dir), ('pylib_dirs', self.pylib_dirs), ('tracer', self.collector.tracer_name()), - ('config_files', self.config.config_files), + ('config_files', self.config.attempted_config_files), + ('configs_read', self.config.config_files), ('data_path', self.data.filename), ('python', sys.version.replace('\n', '')), ('platform', platform.platform()), |