[openstack-helm] Change whitelist_externals to allowlist_externals

Replace whitelist_externals with allowlist_externals in tox.ini

Change-Id: I0c90b92153b2781056f1590697edcc9b00a4bc0a
This commit is contained in:
Stephen Taylor 2022-12-09 14:15:30 -07:00
parent b72f3d0f3c
commit 7ae7c06f86

10
tox.ini
View File

@ -8,7 +8,7 @@ ignore_basepython_conflict = True
basepython = python3 basepython = python3
setenv = VIRTUAL_ENV={envdir} setenv = VIRTUAL_ENV={envdir}
deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
passenv = *_proxy *_PROXY passenv = *_proxy,*_PROXY
[testenv:venv] [testenv:venv]
commands = {posargs} commands = {posargs}
@ -20,7 +20,7 @@ deps =
commands = commands =
rm -rf doc/build rm -rf doc/build
docstheme-build-translated.sh docstheme-build-translated.sh
whitelist_externals = allowlist_externals =
rm rm
[testenv:lint] [testenv:lint]
@ -29,11 +29,11 @@ deps =
yamllint yamllint
commands = commands =
rm -rf .yamllint rm -rf .yamllint
bash -c 'if [ ! -d ../openstack-helm-infra ]; then\ bash -c 'if [ ! -d ../openstack-helm-infra ]; then \
git clone https://opendev.org/openstack/openstack-helm-infra ../openstack-helm-infra;\ git clone https://opendev.org/openstack/openstack-helm-infra ../openstack-helm-infra; \
fi' fi'
bash ../openstack-helm-infra/tools/gate/lint.sh bash ../openstack-helm-infra/tools/gate/lint.sh
whitelist_externals = allowlist_externals =
rm rm
bash bash