From 0364a1b971d3cbef1c2f5cda0de21ad71040555b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 29 Mar 2022 17:57:03 +0200 Subject: [PATCH] pylint: Disable unnecessary-ellipsis for tests See https://github.com/PyCQA/pylint/issues/6036 and https://github.com/PyCQA/pylint/issues/6037 --- scripts/dev/run_pylint_on_tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/dev/run_pylint_on_tests.py b/scripts/dev/run_pylint_on_tests.py index 28c6e32c919..a44828a8545 100644 --- a/scripts/dev/run_pylint_on_tests.py +++ b/scripts/dev/run_pylint_on_tests.py @@ -64,6 +64,9 @@ def main(): 'import-error', # tests/helpers imports 'wrong-import-order', + # https://github.com/PyCQA/pylint/issues/6036 + # https://github.com/PyCQA/pylint/issues/6037 + 'unnecessary-ellipsis', ] toxinidir = sys.argv[1]