From ede5de8f332509d353a5d682b48f6848e076bd23 Mon Sep 17 00:00:00 2001 From: Al Bailey Date: Fri, 9 Dec 2022 22:19:12 +0000 Subject: [PATCH] Fix failing zuul jobs due to tox showconfig As part of how we nest the tox.ini files in STX, the environments in the sub directories need to also be defined in the tox.ini in the base file. I suspect the tox_extra_args change here may have exposed the problem in some of our tox files. https://review.opendev.org/c/zuul/zuul-jobs/+/866935 Partial-Bug: #1997255 Signed-off-by: Al Bailey Change-Id: Ia963897be5f844599d2f6145f472f5eac1df6805 --- tox.ini | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tox.ini b/tox.ini index b191ced6b..f9afc8317 100644 --- a/tox.ini +++ b/tox.ini @@ -40,6 +40,14 @@ description = Dummy environment to allow pep8 to be run in subdir tox basepython = python3 description = Dummy environment to allow pylint to be run in subdir tox +[testenv:pep8_Debian] +basepython = python3 +description = Dummy environment to allow pep8 to be run in subdir tox + +[testenv:pylint_Debian] +basepython = python3 +description = Dummy environment to allow pylint to be run in subdir tox + [testenv:linters] basepython = python3 whitelist_externals = bash