c6662b06a2
This should have been removed when we switched oslo.messaging to confluent-kafka way back in the victoria cycle [1]. We also update tox to update whitelist_externals to allowlist_externals. [1] Idfb9fe3700d882c8285c6dc56b0620951178eba2 Change-Id: I3d87e4bb5775aa549ccf3c8266c4161c2dc4a110 Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
26 lines
822 B
INI
26 lines
822 B
INI
[tox]
|
|
minversion = 3.1.1
|
|
skipsdist = True
|
|
envlist = bashate
|
|
|
|
[testenv]
|
|
usedevelop = False
|
|
install_command = pip install {opts} {packages}
|
|
|
|
[testenv:bashate]
|
|
deps = bashate
|
|
allowlist_externals = bash
|
|
commands = bash -c "find {toxinidir} \
|
|
-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/\* \
|
|
\) \
|
|
-print0 | xargs -0 bashate -v -iE006"
|