summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylint/testutils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pylint/testutils.py b/pylint/testutils.py
index adc4e0c..1d0c3c8 100644
--- a/pylint/testutils.py
+++ b/pylint/testutils.py
@@ -272,6 +272,7 @@ class LintTestUsingModule(unittest.TestCase):
def test_functionality(self):
tocheck = [self.package+'.'+self.module]
+ # pylint: disable=not-iterable-context; can't handle boolean checks for now
if self.depends:
tocheck += [self.package+'.%s' % name.replace('.py', '')
for name, _ in self.depends]
@@ -317,6 +318,7 @@ class LintTestUsingFile(LintTestUsingModule):
if not isdir(importable):
importable += '.py'
tocheck = [importable]
+ # pylint: disable=not-iterable-context; can't handle boolean checks for now
if self.depends:
tocheck += [join(self.INPUT_DIR, name) for name, _ in self.depends]
self._test(tocheck)