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
This commit is contained in:
Sorin Sbarnea 2019-03-01 10:50:39 +00:00
parent e454fe143d
commit e8451873fe
1 changed files with 3 additions and 1 deletions

View File

@ -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