diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-08-07 17:20:48 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-08-07 17:20:48 -0400 |
commit | 93325dfb9d388c1a01f0e71b130afcabab74881c (patch) | |
tree | 2c898e1a83917bedd3d9218f26ef9b2caf29c830 /tests/test_process.py | |
parent | b3d626c3936d11c189b8e810ccb93ceaa019b156 (diff) | |
download | python-coveragepy-git-93325dfb9d388c1a01f0e71b130afcabab74881c.tar.gz |
Use latest pylint
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index f7f46ab0..ec19aed9 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -1110,7 +1110,7 @@ class ProcessStartupTest(ProcessCoverageMixin, CoverageTest): data_file = .mycovdata """) self.set_environ("COVERAGE_PROCESS_START", "coverage.ini") - import main # pylint: disable=import-error + import main # pylint: disable=import-error, unused-variable with open("out.txt") as f: self.assertEqual(f.read(), "Hello, world!\n") |