From 7a0ff013db8ec629285ecf58b222d2a8762e92e4 Mon Sep 17 00:00:00 2001 From: Ramana Raja Date: Wed, 23 Dec 2015 20:26:43 +0530 Subject: [PATCH] Fix for tox 2.3.1 failure Remove inline comments after line escape that isn't understood by the tox's parser. This is due to the backward incompatible fix, https://bitbucket.org/hpk42/tox/issues/181 Related Bug: #1527562 Change-Id: Ib92b65b510fc3a6261e0e890c91af0718f24fc33 --- tox.ini | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 20ecbaa..8e75f0d 100644 --- a/tox.ini +++ b/tox.ini @@ -11,15 +11,15 @@ install_command = pip install {opts} {packages} deps = bashate whitelist_externals = bash commands = bash -c "find {toxinidir} \ - -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"