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 <[email protected]> --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 2.7.4 _______________________________________________ Patchwork mailing list [email protected] https://lists.ozlabs.org/listinfo/patchwork
