Navigation Menu

Skip to content

Commit

Permalink
Fix tox ValueError: No closing quotation
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Kiall Mac Innes committed Dec 16, 2015
1 parent d3b345d commit 0f5fd24
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tox.ini
Expand Up @@ -44,17 +44,17 @@ commands = sh tools/pretty_flake8.sh
deps = bashate
whitelist_externals = bash
commands = bash -c "find {toxinidir}/devstack \
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs
-not \( -type d -name doc -prune \) \ # skip documentation
-type f \ # only files
-not -name \*~ \ # skip editors, readme, etc
-not \( -type d -name .?\* -prune \) \
-not \( -type d -name doc -prune \) \
-type f \
-not -name \*~ \
-not -name \*.md \
\( \
-name \*.sh -or \
-name \*rc -or \
-name functions\* -or \
-wholename \*/lib/\* \ # /lib files are shell, but
\) \ # have no extension
-wholename \*/lib/\* \
\) \
-print0 | xargs -0 bashate -v"

[testenv:pip-check-reqs]
Expand Down

0 comments on commit 0f5fd24

Please sign in to comment.