Drop redundant injection of VIRTUAL_ENV

tox automatically injects the environment so no manual override is
necessary.

Change-Id: I7d495753119ce30ea6aa1438eb8d719363dbc918
This commit is contained in:
Takashi Kajinami
2025-04-14 21:21:29 +09:00
parent c2b1187c10
commit af169707b7

View File

@@ -3,11 +3,9 @@ minversion = 3.18.0
envlist = py3,pep8
[testenv]
setenv =
VIRTUAL_ENV={envdir}
deps =
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt
commands = stestr run --slowest {posargs}
[testenv:pep8]