diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 07:30:07 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 07:30:07 -0500 |
commit | 737f8ffa024563fb8315f94cdf1484aa7bdb6eaa (patch) | |
tree | 4f509ac85244bdb4b251b1134257e0eadb020f62 /tests/backtest.py | |
parent | df5b3c800fdf4a2eef373196b1f0a166279a3566 (diff) | |
parent | d0a872c92e0e8c6ebb9530c2b61f2b9582612fb4 (diff) | |
download | python-coveragepy-737f8ffa024563fb8315f94cdf1484aa7bdb6eaa.tar.gz |
Merged pull request 43: --skip-covered
Diffstat (limited to 'tests/backtest.py')
-rw-r--r-- | tests/backtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/backtest.py b/tests/backtest.py index 439493d..574e6ac 100644 --- a/tests/backtest.py +++ b/tests/backtest.py @@ -1,6 +1,6 @@ """Add things to old Pythons so I can pretend they are newer, for tests.""" -# pylint: disable=W0622 +# pylint: disable=redefined-builtin # (Redefining built-in blah) # The whole point of this file is to redefine built-ins, so shut up about it. @@ -20,7 +20,7 @@ def run_command(cmd): stderr=subprocess.STDOUT ) output, _ = proc.communicate() - status = proc.returncode # pylint: disable=E1101 + status = proc.returncode # Get the output, and canonicalize it to strings with newlines. if not isinstance(output, str): |