summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-12-02 17:38:29 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-12-02 17:38:29 +0100
commit2f69664c2ad04eb7778de7d6e3d033097934a557 (patch)
tree1ad642ac0cc1cc228b8b63dbc25b5674d746900a
parented2342a43093a137f5260923eeb5946f4bbb65ee (diff)
downloadqutebrowser-2f69664c2ad04eb7778de7d6e3d033097934a557.tar.gz
qutebrowser-2f69664c2ad04eb7778de7d6e3d033097934a557.zip
pylint: Disable wrong-import-order for tests
-rw-r--r--scripts/dev/run_pylint_on_tests.py2
1 files changed, 2 insertions, 0 deletions
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]