summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authoryatinkarel <ykarel@redhat.com>2023-01-06 14:01:19 +0530
committeryatinkarel <ykarel@redhat.com>2023-01-06 14:10:38 +0530
commitd59bf5ff6c75c9f32129cd4ee49c2acb23e8bb9c (patch)
tree03b30d8e596de674fb9c3b5e1b64c8e5cf3047b7 /tox.ini
parent07fd0e101b62deda45206aff8bbdf151e23b169f (diff)
downloadneutron-d59bf5ff6c75c9f32129cd4ee49c2acb23e8bb9c.tar.gz
Temporary update envlist for tox4
tox4 even when running specific env with -e option tries to find python version for all envs defined in envlist[1] when running with --skip-missing-interpreters=false and fails if interpreter missing for any of the env. With py38 in envlist it tries to find python3.8 which is not available in ubuntu-jammy by default and fails, hence use generic version instead i.e py3 to handle it. Once [1] is fixed we can update the list as per default supported py3 version for a release. [1] https://github.com/tox-dev/tox/issues/2811 Change-Id: I3afc539c59f223338920d7fd59f0df76e842ece1
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index b69bd9b5d7..cfa2bfc39f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = docs,py38,pep8
+envlist = docs,py3,pep8
minversion = 3.18.0
skipsdist = False
ignore_basepython_conflict = True