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
This commit is contained in:
Monty Taylor 2018-11-06 08:08:56 -06:00
parent c96d0b918a
commit a5736ba07f
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
[tox]
minversion = 1.6
minversion = 3.1
skipsdist = True
envlist = pep8,py35
ignore_basepython_conflict = True
[testenv]
basepython = python3