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:
parent
f30a7381dc
commit
7a0ff013db
12
tox.ini
12
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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user