From 9c5ef5eafe214432ea5287a02f6096f2375c640f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sun, 13 Oct 2024 01:29:47 +0900 Subject: [PATCH] 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: Ia842a72d618cf4b27ebaab0f2c576bb7eb76ab24 --- diskimage-create/tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/diskimage-create/tox.ini b/diskimage-create/tox.ini index e6eba7f4b4..be71faded2 100644 --- a/diskimage-create/tox.ini +++ b/diskimage-create/tox.ini @@ -4,7 +4,6 @@ envlist = bashate,docs,build,test [testenv] basepython = python3 -envdir = {toxworkdir}/venv setenv = VIRTUAL_ENV={envdir} passenv = http_proxy