From 6263f7aa9a82a195c5e2f6bab069a9a66f82f8c7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 29 Jul 2020 10:23:03 +0200 Subject: [PATCH] pylint: Ignore not-callable for tests Workaround for https://github.com/pytest-dev/pytest/issues/7558 --- scripts/dev/run_pylint_on_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/dev/run_pylint_on_tests.py b/scripts/dev/run_pylint_on_tests.py index d02d03c793d..bfa054e32ce 100644 --- a/scripts/dev/run_pylint_on_tests.py +++ b/scripts/dev/run_pylint_on_tests.py @@ -60,6 +60,8 @@ def main(): 'compare-to-empty-string', # directories without __init__.py... 'import-error', + # WORKAROUND for https://github.com/pytest-dev/pytest/issues/7558 + 'not-callable', ] toxinidir = sys.argv[1]