Remove skip_missing_interpreters

This prevents a job reporting 'success' when the appropriate python
interpreter cannot be found, when actually it didn't run at all.
Also change the default envlist to use generic 'py3' instead of a
specific version which might not be present.

Jeremy Stanley has given a more thorough explanation of why this
is a good change:
http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014810.html

Change-Id: I4be4c4167adf01b70980269b338fbb720c49aeab
This commit is contained in:
Brian Rosmaita 2021-06-30 16:05:22 -04:00
parent 736454730f
commit a6f1a93c13
1 changed files with 1 additions and 2 deletions

View File

@ -1,9 +1,8 @@
[tox]
minversion = 3.18.0
skipsdist = True
skip_missing_interpreters = true
# python runtimes: https://governance.openstack.org/tc/reference/runtimes/ussuri.html
envlist = py38,py36,pep8
envlist = py3,pep8
# this allows tox to infer the base python from the environment name
# and override any basepython configured in this file
ignore_basepython_conflict=true