From 51d18cf9f304d80209351adce310a61ff7e456e2 Mon Sep 17 00:00:00 2001 From: Will Szumski Date: Thu, 1 Nov 2018 11:42:40 +0000 Subject: [PATCH] Use extend-ignore in preference to ignore The behavior of flake has changed so that ignore overwrites the default list. This uses the new extend-ignore option to emulate the old behavior. See: https://gitlab.com/pycqa/flake8/issues/466 for more details. TrivialFix Change-Id: Ib96a176f6cbbf485ad5b0ff2ab90e3bb8bc99abd --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index dfa3407..642e27e 100644 --- a/tox.ini +++ b/tox.ini @@ -64,6 +64,6 @@ commands = bash -c "ansible-lint \ # E123, E125 skipped as they are invalid PEP-8. show-source = True -ignore = E123,E125 +extend-ignore = E123,E125 builtins = _ exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build