diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-03-19 06:39:34 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-03-19 06:39:34 -0400 |
commit | 782feaa4c88722ea653cd50c79fc7773bef4ea8a (patch) | |
tree | f5498833c8f3b60660d93b0603effb3d5bc08e32 /tests/test_debug.py | |
parent | 36cae68dd8787c2b0aa33945d508ed7ff88c9744 (diff) | |
download | python-coveragepy-782feaa4c88722ea653cd50c79fc7773bef4ea8a.tar.gz |
Slight refactor of how we look for configuration files
Diffstat (limited to 'tests/test_debug.py')
-rw-r--r-- | tests/test_debug.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_debug.py b/tests/test_debug.py index 38f31f5..c81ca24 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -145,7 +145,7 @@ class DebugTraceTest(CoverageTest): out_lines = self.f1_debug_output(["config"]) labels = """ - attempted_config_files branch config_files cover_pylib data_file + attempted_config_files branch config_files_read config_file cover_pylib data_file debug exclude_list extra_css html_dir html_title ignore_errors run_include run_omit parallel partial_always_list partial_list paths precision show_missing source timid xml_output @@ -162,7 +162,7 @@ class DebugTraceTest(CoverageTest): out_lines = self.f1_debug_output(["sys"]) labels = """ - version coverage cover_paths pylib_paths tracer config_files + version coverage cover_paths pylib_paths tracer configs_attempted config_file configs_read data_path python platform implementation executable cwd path environment command_line cover_match pylib_match """.split() |