From e8451873fe46cfd4845dafeaecea496fada748b6 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Fri, 1 Mar 2019 10:50:39 +0000 Subject: [PATCH] Improve tox usage for development Adds ignore_basepython_conflict tox.ini in order to avoid conflict displayed if tox is run on machine that is using py36 or py36 default interpreter instead of py35. Ignores missing interpreters as developer may not have the full range of python interpreters installed. This change has no impact on CI execution as there tox is always called with specific environments. Change-Id: Ibb3c17632b7a15de698218bcb987aece75eec623 --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index d21048b1b..a583e959f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,7 @@ [tox] -envlist = linters, py27, py35 +envlist = linters, py27, py35, py36, py37 +ignore_basepython_conflict = True +skip_missing_interpreters = True [testenv] usedevelop = True