Only set basepython once

Rather than setting it in all of the envs, set it in the main env. Then
add ignore_basepython_conflict option to tox.ini so that doing so
doesn't mess with py35, py36 and py37's python setting.

Change-Id: I72fa337b2b7be1823beeb3f3bfc4bd23589c007d
This commit is contained in:
Monty Taylor 2018-11-06 10:48:37 -06:00
parent 6c461c3877
commit a7c1f6a56a
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594

10
tox.ini
View File

@ -1,9 +1,11 @@
[tox] [tox]
minversion = 2.8.1 minversion = 3.1
skipsdist = True skipsdist = True
envlist = pep8,py35 envlist = pep8,py35
ignore_basepython_conflict = True
[testenv] [testenv]
basepython = python3
# Set STATSD env variables so that statsd code paths are tested. # Set STATSD env variables so that statsd code paths are tested.
setenv = STATSD_HOST=localhost setenv = STATSD_HOST=localhost
STATSD_PORT=8125 STATSD_PORT=8125
@ -20,11 +22,9 @@ commands = stestr --test-path ./nodepool/tests/unit run --no-subunit-trace {posa
stestr slowest stestr slowest
[testenv:pep8] [testenv:pep8]
basepython = python3
commands = flake8 nodepool commands = flake8 nodepool
[testenv:bindep] [testenv:bindep]
basepython = python3
# Do not install any requirements. We want this to be fast and work even if # 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 # system dependencies are missing, since it's used to tell you what system
# dependencies are missing! This also means that bindep must be installed # dependencies are missing! This also means that bindep must be installed
@ -33,7 +33,6 @@ deps = bindep
commands = bindep test commands = bindep test
[testenv:cover] [testenv:cover]
basepython = python3
setenv = setenv =
{[testenv]setenv} {[testenv]setenv}
PYTHON=coverage run --source nodepool --parallel-mode PYTHON=coverage run --source nodepool --parallel-mode
@ -44,18 +43,15 @@ commands =
coverage xml -o cover/coverage.xml coverage xml -o cover/coverage.xml
[testenv:docs] [testenv:docs]
basepython = python3
deps = -r{toxinidir}/requirements.txt deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/doc/requirements.txt -r{toxinidir}/doc/requirements.txt
commands = commands =
sphinx-build -E -W -d doc/build/doctrees -b html doc/source/ doc/build/html sphinx-build -E -W -d doc/build/doctrees -b html doc/source/ doc/build/html
[testenv:venv] [testenv:venv]
basepython = python3
commands = {posargs} commands = {posargs}
[testenv:functional_kubernetes] [testenv:functional_kubernetes]
basepython = python3
commands = stestr --test-path ./nodepool/tests/functional/kubernetes run --no-subunit-trace {posargs} commands = stestr --test-path ./nodepool/tests/functional/kubernetes run --no-subunit-trace {posargs}
stestr slowest stestr slowest