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
This commit is contained in:
Ramana Raja 2015-12-23 20:26:43 +05:30
parent f30a7381dc
commit 7a0ff013db
1 changed files with 6 additions and 6 deletions

12
tox.ini
View File

@ -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"