summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorStephen Finucane <stephenfinucane@hotmail.com>2016-08-13 23:43:04 +0100
committerStephen Finucane <stephenfinucane@hotmail.com>2016-08-21 17:28:51 +0100
commit4963c9cf74b66b3aa67e6fa307e4278339a0c389 (patch)
tree3f48cd1114ebd864ddd4d3e1b424568e7843b9f1 /tox.ini
parent591595bfccd4476fface1dd3c301105b95aac4d4 (diff)
downloadpatchwork-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>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 37e6939..41af806 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]