From e68b3f4862d5b34728cdebc163d9f7bd7969dc70 Mon Sep 17 00:00:00 2001 From: "huang.zhiping" Date: Sat, 9 Jun 2018 00:58:29 +0800 Subject: [PATCH] fix tox python3 overrides We want to default to running all tox environments under python 3, so set the basepython value in each environment. We do not want to specify a minor version number, because we do not want to have to update the file every time we upgrade python. We do not want to set the override once in testenv, because that breaks the more specific versions used in default environments like py35 and py36. Change-Id: Icfddc419e3afde053c1a05a41497a28ceafb1464 --- tox.ini | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tox.ini b/tox.ini index 00a7ed8..5da9b13 100644 --- a/tox.ini +++ b/tox.ini @@ -13,18 +13,23 @@ deps = -r{toxinidir}/requirements.txt whitelist_externals = bash [testenv:pep8] +basepython = python3 commands = flake8 [testenv:venv] +basepython = python3 commands = {posargs} [testenv:checksyntax] +basepython = python3 commands = python gerrit_dash_creator/cmd/creator.py --check-only dashboards [testenv:cover] +basepython = python3 commands = python setup.py testr --coverage --testr-args='{posargs}' [testenv:docs] +basepython = python3 commands = # not happy with generated dashboard pages # doc8 -e .rst doc CONTRIBUTING.rst HACKING.rst README.rst @@ -40,11 +45,13 @@ builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build [testenv:dashboards] +basepython = python3 commands = bash -c "tools/generate_dashboards.sh" sphinx-build doc/source/ build/ [testenv:bindep] +basepython = python3 # Do not install any requirements. We want this to be fast and work even if # system dependencies are missing, since it's used to tell you what system # dependencies are missing! This also means that bindep must be installed