diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-19 22:10:36 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-19 22:10:36 -0500 |
commit | 5a55e8cdaa437d9515f3146d496ffa92c527f175 (patch) | |
tree | 8d5533b294def3353f4cad2e0cc84a2b3c44f0b8 /test/test_summary.py | |
parent | dc438780abf10e5257bb177728066e16201e3916 (diff) | |
download | python-coveragepy-git-5a55e8cdaa437d9515f3146d496ffa92c527f175.tar.gz |
lint lint
Diffstat (limited to 'test/test_summary.py')
-rw-r--r-- | test/test_summary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_summary.py b/test/test_summary.py index 933bcbe5..b460c2dc 100644 --- a/test/test_summary.py +++ b/test/test_summary.py @@ -201,7 +201,7 @@ class SummaryTest(CoverageTest): """) cov = coverage.coverage(branch=True, source=["."]) cov.start() - import main + import main # pylint: disable=F0401,W0612 cov.stop() report = self.get_report(cov).splitlines() self.assertIn("mybranch 5 5 2 2 0%", report) |