tox: Drop envdir
tox now always recreates an env although the env is shared using envdir options. ~~~ $ tox -e genpolicy genpolicy: recreate env because env type changed from {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to {'name': 'genpolicy', 'type': 'VirtualEnvRunner'} ~~~ According to the maintainer of tox, this functionality is not intended to be supported. https://github.com/tox-dev/tox/issues/425#issuecomment-1011944293 Change-Id: I18ad8e5de031bc6be1b8e01860585ffae5ec0aa5
This commit is contained in:
parent
269f324b24
commit
b20f5d5526
6
tox.ini
6
tox.ini
@ -25,14 +25,12 @@ commands = flake8 {posargs}
|
|||||||
commands = {posargs}
|
commands = {posargs}
|
||||||
|
|
||||||
[testenv:functional]
|
[testenv:functional]
|
||||||
envdir = {toxworkdir}/functional
|
|
||||||
setenv =
|
setenv =
|
||||||
{[testenv]setenv}
|
{[testenv]setenv}
|
||||||
commands =
|
commands =
|
||||||
stestr run --exclude-regex ".tests.unit" {posargs}
|
stestr run --exclude-regex ".tests.unit" {posargs}
|
||||||
|
|
||||||
[testenv:cover]
|
[testenv:cover]
|
||||||
envdir = {toxworkdir}/shared
|
|
||||||
setenv =
|
setenv =
|
||||||
VIRTUAL_ENV={envdir}
|
VIRTUAL_ENV={envdir}
|
||||||
PYTHON=coverage run --source ovn_bgp_agent --parallel-mode
|
PYTHON=coverage run --source ovn_bgp_agent --parallel-mode
|
||||||
@ -44,22 +42,18 @@ commands =
|
|||||||
coverage report --fail-under=82 --skip-covered
|
coverage report --fail-under=82 --skip-covered
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
envdir = {toxworkdir}/docs
|
|
||||||
deps = -r{toxinidir}/doc/requirements.txt
|
deps = -r{toxinidir}/doc/requirements.txt
|
||||||
commands = sphinx-build -W -b html doc/source doc/build/html
|
commands = sphinx-build -W -b html doc/source doc/build/html
|
||||||
|
|
||||||
[testenv:releasenotes]
|
[testenv:releasenotes]
|
||||||
envdir = {toxworkdir}/docs
|
|
||||||
deps = {[testenv:docs]deps}
|
deps = {[testenv:docs]deps}
|
||||||
commands =
|
commands =
|
||||||
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
||||||
|
|
||||||
[testenv:debug]
|
[testenv:debug]
|
||||||
envdir = {toxworkdir}/shared
|
|
||||||
commands = oslo_debug_helper {posargs}
|
commands = oslo_debug_helper {posargs}
|
||||||
|
|
||||||
[testenv:genconfig]
|
[testenv:genconfig]
|
||||||
envdir = {toxworkdir}/shared
|
|
||||||
commands =
|
commands =
|
||||||
oslo-config-generator --config-file=etc/oslo-config-generator/bgp-agent.conf
|
oslo-config-generator --config-file=etc/oslo-config-generator/bgp-agent.conf
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user