Fix tox ValueError: No closing quotation

This removes the comments, which with the latest tox are causing
issues. We should sync-up with the bashate entry in the devstack
repo once they fix it on their side.

Change-Id: I6e79fefbda97fcefc1d8cf628511b82ff399c129
This commit is contained in:
Kiall Mac Innes 2015-12-16 14:18:29 +00:00
parent d3b345d7b5
commit 0f5fd246c7

12
tox.ini
View File

@ -44,17 +44,17 @@ commands = sh tools/pretty_flake8.sh
deps = bashate deps = bashate
whitelist_externals = bash whitelist_externals = bash
commands = bash -c "find {toxinidir}/devstack \ commands = bash -c "find {toxinidir}/devstack \
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs -not \( -type d -name .?\* -prune \) \
-not \( -type d -name doc -prune \) \ # skip documentation -not \( -type d -name doc -prune \) \
-type f \ # only files -type f \
-not -name \*~ \ # skip editors, readme, etc -not -name \*~ \
-not -name \*.md \ -not -name \*.md \
\( \ \( \
-name \*.sh -or \ -name \*.sh -or \
-name \*rc -or \ -name \*rc -or \
-name functions\* -or \ -name functions\* -or \
-wholename \*/lib/\* \ # /lib files are shell, but -wholename \*/lib/\* \
\) \ # have no extension \) \
-print0 | xargs -0 bashate -v" -print0 | xargs -0 bashate -v"
[testenv:pip-check-reqs] [testenv:pip-check-reqs]