From: Stephen Finucane Date: Sun, 14 Oct 2018 16:37:02 +0000 (+0100) Subject: tox: Fix issues with 'bashate' target X-Git-Tag: v2.2.0-rc1~241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=810d2c92016b2e58ba97fb3c5b18c5255af8ddb4;p=thirdparty%2Fpatchwork.git tox: Fix issues with 'bashate' target We don't care about too long lines for bash so the error is disabled. The version marker is removed as it's unnecessary. Signed-off-by: Stephen Finucane --- diff --git a/tox.ini b/tox.ini index 357c7d03..df17df7e 100644 --- a/tox.ini +++ b/tox.ini @@ -29,13 +29,13 @@ commands = python {toxinidir}/manage.py test --noinput '{posargs:patchwork}' [testenv:bashate] -deps = bashate>=0.5,<0.6 +deps = bashate whitelist_externals = bash commands = bash -c "find {toxinidir} \ -not \( -type d -name .?\* -prune \) \ -not \( -type d -name db -prune \) \ - -name \*.sh -print | xargs bashate" + -name \*.sh -print | xargs bashate -i E006" [testenv:pep8] basepython = python2.7