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 | 0be9de1ff6b6a852849d31fedfb41b94bec63267 (patch) | |
tree | b881e26120900be02cc48cd693300f2be9721963 /test/test_summary.py | |
parent | 61a3f737c4edbcbcd9468d47bd8025613ed590f7 (diff) | |
download | python-coveragepy-0be9de1ff6b6a852849d31fedfb41b94bec63267.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 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) |