From: Damien Lespiau Date: Tue, 22 Sep 2015 15:09:10 +0000 (+0100) Subject: flake: Restrict flake to the patchwork directory X-Git-Tag: v1.1.0~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=420b3eaa79f63531a0102fb0003841d82aa93883;p=thirdparty%2Fpatchwork.git flake: Restrict flake to the patchwork directory Right now flake will inspect everything in the root directory. We can avoid a bit of work, telling it to only look at the patchwork/ directory. Signed-off-by: Damien Lespiau Acked-by: Stephen Finucane --- diff --git a/tox.ini b/tox.ini index 53d067e1..d7eb5b0b 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,7 @@ passenv = [testenv:pep8] basepython = python2.7 deps = flake -commands = flake8 {posargs} +commands = flake8 {posargs} patchwork [flake8] ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,H405