diff options
author | Stephen Finucane <stephenfinucane@hotmail.com> | 2016-08-13 23:43:04 +0100 |
---|---|---|
committer | Stephen Finucane <stephenfinucane@hotmail.com> | 2016-08-21 17:28:51 +0100 |
commit | 4963c9cf74b66b3aa67e6fa307e4278339a0c389 (patch) | |
tree | 3f48cd1114ebd864ddd4d3e1b424568e7843b9f1 | |
parent | 591595bfccd4476fface1dd3c301105b95aac4d4 (diff) | |
download | patchwork-4963c9cf74b66b3aa67e6fa307e4278339a0c389.tar patchwork-4963c9cf74b66b3aa67e6fa307e4278339a0c389.tar.gz |
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 <stephenfinucane@hotmail.com>
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ deps = flake8 commands = flake8 {posargs} patchwork patchwork/bin/pwclient [flake8] -ignore = E129 +ignore = E129, F405 exclude = ./patchwork/migrations [testenv:lint] |