tox.ini: Use python3.5 in py35 environment

When stuff fails it tends to fail in different ways on different
versions of python. It's very unhelpful if 'tox -epy35' means a
different thing on every developer's machine, which is what tends to
happen if you use python3 as the basepython.

Change-Id: I4f92cd6bb22e36b1c49436eca1849712682aec68
This commit is contained in:
Zane Bitter 2018-05-07 20:35:46 -04:00
parent cad75e4e13
commit 61fad310f6
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,9 @@ commands =
bandit -r oslo_service -n5 -x tests
doc8 --ignore-path "doc/source/history.rst" doc/source
[testenv:py35]
basepython = python3.5
[testenv:py27]
basepython = python2.7