From a016cc4d87fcd4726d86e38750b2087bde925bc2 Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Thu, 22 Aug 2024 11:11:59 +0200 Subject: fix(tox): Upgrade tox versions and dependencies Tox job started failing on pip issues. Change-Id: I198bfee3d9398c6b1e6ace4dec730e1333b14dbd Signed-off-by: Vratko Polak --- tox.ini | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index e0ac85c22a..c61677477f 100644 --- a/tox.ini +++ b/tox.ini @@ -39,30 +39,30 @@ script_dir = ./resources/libraries/bash/entry/tox # + ignore_outcome for non-voting checkers, # + setenv (PYTHONPATH) for Python-using checkers and fixers. # + Other Python stuff (e.g. basepython and deps for pylint). -# + whitelist_externals to enable bash. +# + allowlist_externals to enable bash. # + Commands with a single bash to launch the corresponding script. [testenv:autogen] setenv = PYTHONPATH = {toxinidir} -whitelist_externals = bash +allowlist_externals = bash commands = bash {[tox]script_dir}/autogen.sh [testenv:copyright_year] -whitelist_externals = bash +allowlist_externals = bash commands = bash {[tox]script_dir}/copyright_year.sh [testenv:fix_copyright_year] -whitelist_externals = bash +allowlist_externals = bash commands = bash {[tox]script_dir}/fix_copyright_year.sh [testenv:gpl_license] -whitelist_externals = bash +allowlist_externals = bash commands = bash {[tox]script_dir}/gpl_license.sh [testenv:line_length] # Fix all transgressions and remove the ignore_outcome flag. ignore_outcome = true -whitelist_externals = bash +allowlist_externals = bash commands = bash {[tox]script_dir}/line.sh [testenv:new_line_length] @@ -70,7 +70,7 @@ commands = bash {[tox]script_dir}/line.sh # As current implementation is too dumb to filter those out, # the checker has to remain non-voting. ignore_outcome = true -whitelist_externals = bash +allowlist_externals = bash commands = bash {[tox]script_dir}/new_line.sh [testenv:pylint] @@ -79,5 +79,5 @@ ignore_outcome = true setenv = PYTHONPATH = {toxinidir} basepython = python3 deps = -r ./requirements.txt -whitelist_externals = bash +allowlist_externals = bash commands = bash {[tox]script_dir}/pylint.sh -- cgit 1.2.3-korg