From 07a1f13b5e2e1d72f93c3f1018b6b9f294bfdca1 Mon Sep 17 00:00:00 2001 From: Al Bailey Date: Tue, 27 Dec 2022 01:32:19 +0000 Subject: [PATCH] Update tox.ini to work with tox 4 This change will allow this repo to pass zuul now that this has merged: https://review.opendev.org/c/zuul/zuul-jobs/+/866943 Tox 4 deprecated whitelist_externals. Replace whitelist_externals with allowlist_externals Partial-Bug: #2000399 Signed-off-by: Al Bailey Change-Id: I017d1b9c379ce60fa75b13609465f4256efc15df --- python-k8sapp-vault/k8sapp_vault/tox.ini | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python-k8sapp-vault/k8sapp_vault/tox.ini b/python-k8sapp-vault/k8sapp_vault/tox.ini index 84ff37e..a35e5e9 100644 --- a/python-k8sapp-vault/k8sapp_vault/tox.ini +++ b/python-k8sapp-vault/k8sapp_vault/tox.ini @@ -18,7 +18,7 @@ distshare={toxworkdir}/.tox/distshare sitepackages = False # tox is silly... these need to be separated by a newline.... -whitelist_externals = bash +allowlist_externals = bash find install_command = pip install -v -v -v \ diff --git a/tox.ini b/tox.ini index 8a5ffa9..fa5b385 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ setenv = deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt -whitelist_externals = +allowlist_externals = bash [testenv:bashate]