Squash E006 bashate warnings

bashate, which is invoked when running 'tox -epep8', currently
emits many 'E006: Line too long' warnings.  We apparently don't
really care about line length in shell scripts and ignore these
warnings.

This commit instructs bashate to suppress these warnings so that
we can see any warnings that we really care about.

Change-Id: I565aeaef1f0590e5a6ee6a866974765c748f2965
This commit is contained in:
Tom Barron 2016-02-21 10:18:58 -05:00
parent 2759171336
commit dec5c87b59
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ commands =
flake8 {posargs}
# Run bashate during pep8 runs to ensure violations are caught by
# the check and gate queues.
bashate tools/enable-pre-commit-hook.sh \
bashate -i E006 \
tools/enable-pre-commit-hook.sh \
contrib/ci/pre_test_hook.sh \
contrib/ci/post_test_hook.sh \
devstack/plugin.sh \