tox: Remove basepython

tox uses the python version where tox is installed by default, and we
no longer expect that the tests may run in env with python 2.

Change-Id: Ic50d2199a606282bcf6c685e19ea025d99ca5dc6
This commit is contained in:
Takashi Kajinami
2025-04-15 23:20:39 +09:00
parent 6d4ca22394
commit 87175b3d52

28
tox.ini
View File

@@ -1,35 +1,29 @@
[tox] [tox]
envlist = py3,pep8 envlist = py3,pep8
ignore_basepython_conflict = True minversion = 3.18.0
minversion = 2.0
[testenv] [testenv]
basepython = python3
usedevelop = True usedevelop = True
install_command = pip install {opts} {packages}
deps = deps =
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/requirements.txt -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
commands = commands =
stestr run --slowest {posargs} stestr run --slowest {posargs}
[tox:jenkins]
sitepackages = True
[testenv:pep8] [testenv:pep8]
commands = flake8 commands = flake8
[testenv:cover] [testenv:cover]
setenv = setenv =
PYTHON=coverage run --source os_collect_config --parallel-mode PYTHON=coverage run --source os_collect_config --parallel-mode
commands = commands =
coverage erase coverage erase
stestr run {posargs} stestr run {posargs}
coverage combine coverage combine
coverage html -d cover coverage html -d cover
coverage xml -o cover/coverage.xml coverage xml -o cover/coverage.xml
coverage report coverage report
[testenv:venv] [testenv:venv]
commands = {posargs} commands = {posargs}