diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-05-17 18:36:30 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-05-17 18:36:30 -0400 |
commit | ca1a24ac46844ef83a7c1491659a1f36c8df37b1 (patch) | |
tree | 8ec4f7348cec7e561b983cb30ee01f8990cc557a /tests/test_debug.py | |
parent | ccc1b37086e04d65fbac880248fca3f57b42b901 (diff) | |
download | python-coveragepy-git-ca1a24ac46844ef83a7c1491659a1f36c8df37b1.tar.gz |
Use PyContracts so we can declare/enforce parameter and return types.
This commit doesn't add any uses of PyContracts, but gets the machinery in
place.
Diffstat (limited to 'tests/test_debug.py')
-rw-r--r-- | tests/test_debug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_debug.py b/tests/test_debug.py index 8dd13a57..8576112d 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -116,7 +116,7 @@ class DebugTraceTest(CoverageTest): out_lines = self.f1_debug_output(["sys"]) labels = """ - version coverage cover_dir pylib_dirs tracer config_files + version coverage cover_dirs pylib_dirs tracer config_files configs_read data_path python platform implementation executable cwd path environment command_line cover_match pylib_match """.split() |