[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
1 changed files with 5 additions and 5 deletions

10
tox.ini
View File

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