From a5736ba07f980c904dd0bf318525716de990a914 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 6 Nov 2018 08:08:56 -0600 Subject: [PATCH] Add ignore_basepython_conflict option to tox.ini Without this, basepython overrides the python in all envs, even the builtin ones. That means that py35 and py36 would both be testing with whatever the default python3 is on the system, not 3.5 and 3.6 specifically. Change-Id: I1af5bd99934638244ea29375fc4f170e5616f01b --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9eb0a1d691..6001842004 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,8 @@ [tox] -minversion = 1.6 +minversion = 3.1 skipsdist = True envlist = pep8,py35 +ignore_basepython_conflict = True [testenv] basepython = python3