Centralize basepython as py3 in tox

OpenStack ussuri release will be python 3 only
so let's define the basepython in common env now.

Change-Id: I431523d0cd23c227e535c471bb0c74a3586fa696
This commit is contained in:
Ghanshyam Mann 2020-02-15 17:16:26 -06:00
parent 003d4a009a
commit 5711f63d1b

View File

@ -1,15 +1,16 @@
[tox]
minversion = 2.0
minversion = 3.1
envlist = pep8
skipsdist = True
ignore_basepython_conflict = True
[testenv]
basepython = python3
setenv = VIRTUAL_ENV={envdir}
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/test-requirements.txt
[testenv:pep8]
basepython = python3
deps =
{[testenv]deps}
commands =
@ -19,11 +20,9 @@ commands =
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:status]
basepython = python3
whitelist_externals =
mkdir
bash