summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2018-11-06 08:08:56 -0600
committerMonty Taylor <mordred@inaugust.com>2018-11-06 08:17:49 -0600
commita5736ba07f980c904dd0bf318525716de990a914 (patch)
tree8b154f90fbfee43e81e8ab04ee401869a0b85597 /tox.ini
parentc96d0b918a2037e71b0c761a6198d29cbbc11f4c (diff)
downloadzuul-a5736ba07f980c904dd0bf318525716de990a914.tar.gz
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
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 9eb0a1d69..600184200 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