From 2f69664c2ad04eb7778de7d6e3d033097934a557 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 2 Dec 2021 17:38:29 +0100 Subject: pylint: Disable wrong-import-order for tests --- 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 d0385bd17..02033d37b 100644 --- a/scripts/dev/run_pylint_on_tests.py +++ b/scripts/dev/run_pylint_on_tests.py @@ -61,6 +61,8 @@ def main(): 'pointless-statement', # directories without __init__.py... 'import-error', + # tests/helpers imports + 'wrong-import-order', ] toxinidir = sys.argv[1] -- cgit v1.2.3-54-g00ecf