From 0f5fd246c7ecb851aff1ec489bca1904110fe9fa Mon Sep 17 00:00:00 2001 From: Kiall Mac Innes Date: Wed, 16 Dec 2015 14:18:29 +0000 Subject: [PATCH] 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 --- tox.ini | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 0fcf23e8..88a5f298 100644 --- a/tox.ini +++ b/tox.ini @@ -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]