summaryrefslogtreecommitdiff
path: root/tests/test_context.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-10-06 16:12:15 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-10-06 16:12:15 -0400
commitc7a086c5a0c8c66deeb7befd8d76183cd45ac74f (patch)
tree06a4a63e90bded1dabf86d15cdcf8f9e426ad3e8 /tests/test_context.py
parent671c3800c7a6495e971f682958ca0b52cab5bf3c (diff)
downloadpython-coveragepy-git-c7a086c5a0c8c66deeb7befd8d76183cd45ac74f.tar.gz
Quiet pylint
Diffstat (limited to 'tests/test_context.py')
-rw-r--r--tests/test_context.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_context.py b/tests/test_context.py
index 72739ad0..b002b603 100644
--- a/tests/test_context.py
+++ b/tests/test_context.py
@@ -73,6 +73,7 @@ class StaticContextTest(CoverageTest):
fblue = full_names['blue.py']
def assert_combined_lines(filename, context, lines):
+ # pylint: disable=cell-var-from-loop
combined.set_query_context(context)
self.assertEqual(combined.lines(filename), lines)
@@ -97,6 +98,7 @@ class StaticContextTest(CoverageTest):
fblue = full_names['blue.py']
def assert_combined_lines(filename, context, lines):
+ # pylint: disable=cell-var-from-loop
combined.set_query_context(context)
self.assertEqual(combined.lines(filename), lines)
@@ -106,6 +108,7 @@ class StaticContextTest(CoverageTest):
assert_combined_lines(fblue, 'blue', self.LINES)
def assert_combined_arcs(filename, context, lines):
+ # pylint: disable=cell-var-from-loop
combined.set_query_context(context)
self.assertEqual(combined.arcs(filename), lines)