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
commit0be9de1ff6b6a852849d31fedfb41b94bec63267 (patch)
treeb881e26120900be02cc48cd693300f2be9721963 /test/test_summary.py
parent61a3f737c4edbcbcd9468d47bd8025613ed590f7 (diff)
downloadpython-coveragepy-0be9de1ff6b6a852849d31fedfb41b94bec63267.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 933bcbe..b460c2d 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)