From e0712563c14755b734f9e109b1b864b45e6c6514 Mon Sep 17 00:00:00 2001 From: Sean Mooney Date: Thu, 13 Jun 2019 00:19:24 +0100 Subject: [PATCH] set ignore_basepython_conflict = True in tox.ini os-vif sets the base python version globally in the base testenv and relies on tox to pick up the correct python version form the env name for standard envs like py27. This behavior only work reliably if ignore_basepython_conflict = True is set. Change-Id: I458cf6cf88d9ee672d6cce59e1d86ed888957042 Closes-Bug: #1832652 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 65b2a709..4c654c2a 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,7 @@ minversion = 3.1.1 envlist = py37,py27,pep8 skipsdist = True +ignore_basepython_conflict = True [testenv] basepython = python3