From: Stephen Finucane Date: Sat, 13 Aug 2016 22:43:04 +0000 (+0100) Subject: tox: Disable F405 X-Git-Tag: v2.0.0-rc1~280 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4963c9cf74b66b3aa67e6fa307e4278339a0c389;p=thirdparty%2Fpatchwork.git tox: Disable F405 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 --- diff --git a/tox.ini b/tox.ini index 37e69391..41af806a 100644 --- 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]