From eb2e02df60e7881a36759c02d2eec9b8efd8be7d Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Wed, 1 Feb 2023 12:19:41 -0800 Subject: [PATCH] Fix passenv for tox 4 (#14578) Fixes #14522 --- tox.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a155ec726386..df7784f0731f 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,11 @@ isolated_build = true [testenv] description = run the test driver with {basepython} -passenv = PYTEST_XDIST_WORKER_COUNT PROGRAMDATA PROGRAMFILES(X86) PYTEST_ADDOPTS +passenv = + PYTEST_XDIST_WORKER_COUNT + PROGRAMDATA + PROGRAMFILES(X86) + PYTEST_ADDOPTS deps = -rtest-requirements.txt commands = python -m pytest {posargs}