summaryrefslogtreecommitdiff
path: root/test/test_summary.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-11-19 22:10:36 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-11-19 22:10:36 -0500
commit5a55e8cdaa437d9515f3146d496ffa92c527f175 (patch)
tree8d5533b294def3353f4cad2e0cc84a2b3c44f0b8 /test/test_summary.py
parentdc438780abf10e5257bb177728066e16201e3916 (diff)
downloadpython-coveragepy-git-5a55e8cdaa437d9515f3146d496ffa92c527f175.tar.gz
lint lint
Diffstat (limited to 'test/test_summary.py')
-rw-r--r--test/test_summary.py2
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)