From da317f01c6aeece5c4c4bccb49972a84a3b5580f Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Thu, 7 Jul 2016 17:58:58 +0000 Subject: [PATCH] Run flake8 against scripts in bin Just having a `flake8 --filename=swift* bin` command is insufficient. Change-Id: Ia2a5c364e52d9972d31e6b5e22366503894b720d --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 54cbf1c0b9..200e7a24ed 100644 --- a/tox.ini +++ b/tox.ini @@ -100,6 +100,7 @@ commands = bandit -c bandit.yaml -r swift bin -n 5 -p gate # H501: Do not use self.__dict__ for string formatting ignore = F812,H101,H202,H233,H301,H306,H401,H403,H404,H405,H501 exclude = .venv,.tox,dist,*egg +filename = *.py,bin/* show-source = True [testenv:bindep]