]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
tox: Disable F405
authorStephen Finucane <stephenfinucane@hotmail.com>
Sat, 13 Aug 2016 22:43:04 +0000 (23:43 +0100)
committerStephen Finucane <stephenfinucane@hotmail.com>
Sun, 21 Aug 2016 16:28:51 +0000 (17:28 +0100)
Recent versions of tox throw a lot of errors when using star-imports.
While these warnings are generally justified, the settings files
require this. Since 'noqa'-ing the offending lines would be rather
arduous, simply disable the warning instead.

Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>
tox.ini

diff --git a/tox.ini b/tox.ini
index 37e6939157f4815106e32c13afd2cba621ae509c..41af806ada0ad8a5fdd469f01948f3e82bc99227 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -27,7 +27,7 @@ deps = flake8
 commands = flake8 {posargs} patchwork patchwork/bin/pwclient
 
 [flake8]
-ignore = E129
+ignore = E129, F405
 exclude = ./patchwork/migrations
 
 [testenv:lint]