diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-15 23:03:52 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-15 23:03:52 -0400 |
commit | fc920203f8ec8b87c331a9da091e82645a2e9b43 (patch) | |
tree | e7de67e634852f41259ef953b3b7041d88af0b5b /test/test_cmdline.py | |
parent | 8951e029c5c96ede37c6bb82344d5029c1622575 (diff) | |
download | python-coveragepy-fc920203f8ec8b87c331a9da091e82645a2e9b43.tar.gz |
Format the code to pylint's liking, and fix up the docstrings for omit and include.
Diffstat (limited to 'test/test_cmdline.py')
-rw-r--r-- | test/test_cmdline.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/test_cmdline.py b/test/test_cmdline.py index 71a5397..15fe1ce 100644 --- a/test/test_cmdline.py +++ b/test/test_cmdline.py @@ -496,8 +496,12 @@ class NewCmdLineTest(CmdLineTest): .stop() .save() """) - self.cmd_executes("run --include=pre1,pre2 --omit=opre1,opre2 foo.py", """\ - .coverage(cover_pylib=None, data_suffix=None, timid=None, branch=None, config_file=True, include_prefixes=["pre1", "pre2"], omit_prefixes=["opre1", "opre2"]) + self.cmd_executes("run --include=pre1,pre2 --omit=opre1,opre2 foo.py", + """\ + .coverage(cover_pylib=None, data_suffix=None, timid=None, + branch=None, config_file=True, + include_prefixes=["pre1", "pre2"], + omit_prefixes=["opre1", "opre2"]) .erase() .start() .run_python_file('foo.py', ['foo.py']) |