summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2018-10-14 17:37:02 +0100
committerStephen Finucane <stephen@that.guru>2018-10-14 17:38:17 +0100
commit810d2c92016b2e58ba97fb3c5b18c5255af8ddb4 (patch)
tree65fbd45d0a4b324621bf0d69763631c405beec9e /tox.ini
parent7be99581f1d1b35274987e43ec57272daff94f02 (diff)
downloadpatchwork-810d2c92016b2e58ba97fb3c5b18c5255af8ddb4.tar
patchwork-810d2c92016b2e58ba97fb3c5b18c5255af8ddb4.tar.gz
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 <stephen@that.guru>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 357c7d0..df17df7 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