Do not fail with Tox 2.3.1
Latest tox causes failures: File "/usr/local/lib/python2.7/dist-packages/tox/config.py", line 1140, in processcommand argv = list(shlexer) File "/usr/lib/python2.7/shlex.py", line 269, in next token = self.get_token() File "/usr/lib/python2.7/shlex.py", line 96, in get_token raw = self.read_token() File "/usr/lib/python2.7/shlex.py", line 172, in read_token raise ValueError, "No closing quotation" ValueError: No closing quotation This is caused by a backwards incompatible change in tox: https://bitbucket.org/hpk42/tox/issues/181 Change-Id: Ic28c634cf806394cfa82b61cb45be60b8f40a61a
This commit is contained in:
parent
1adb2e1c11
commit
f59e6df23a
18
tox.ini
18
tox.ini
@ -12,20 +12,20 @@ deps =
|
|||||||
{env:BASHATE_INSTALL_PATH:bashate==0.3.2}
|
{env:BASHATE_INSTALL_PATH:bashate==0.3.2}
|
||||||
whitelist_externals = bash
|
whitelist_externals = bash
|
||||||
commands = bash -c "find {toxinidir} \
|
commands = bash -c "find {toxinidir} \
|
||||||
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs
|
-not \( -type d -name .?\* -prune \) \
|
||||||
-not \( -type d -name doc -prune \) \ # skip documentation
|
-not \( -type d -name doc -prune \) \
|
||||||
-not \( -type d -name shocco -prune \) \ # skip shocco
|
-not \( -type d -name shocco -prune \) \
|
||||||
-type f \ # only files
|
-type f \
|
||||||
-not -name \*~ \ # skip editors, readme, etc
|
-not -name \*~ \
|
||||||
-not -name \*.md \
|
-not -name \*.md \
|
||||||
\( \
|
\( \
|
||||||
-name \*.sh -or \
|
-name \*.sh -or \
|
||||||
-name \*.orig -or \
|
-name \*.orig -or \
|
||||||
-name \*rc -or \ # openrc files, etc
|
-name \*rc -or \
|
||||||
-name functions\* -or \
|
-name functions\* -or \
|
||||||
-wholename \*/inc/\* -or \ # /inc files and
|
-wholename \*/inc/\* -or \
|
||||||
-wholename \*/lib/\* \ # /lib files are shell, but
|
-wholename \*/lib/\* \
|
||||||
\) \ # have no extension
|
\) \
|
||||||
-print0 | xargs -0 bashate -v -iE006 -eE005,E042"
|
-print0 | xargs -0 bashate -v -iE006 -eE005,E042"
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user