From c4b9cc7292b3fb8756feee6ce3da485cd97ef556 Mon Sep 17 00:00:00 2001 From: DjLegolas Date: Mon, 23 Jan 2023 02:30:13 +0200 Subject: [PATCH] [tox] update tox.ini for support for `tox` 4 `tox` 4 now demands that `passenv` parameter will be comma-separated and not space-seperated. Closes: https://github.com/deluge-torrent/deluge/pull/409 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 405610d7c..7f241b043 100644 --- a/tox.ini +++ b/tox.ini @@ -56,7 +56,7 @@ deps = [testenv] install_command = python -m pip install --ignore-installed {opts} {packages} -passenv = DISPLAY PYTHONPATH APPDATA +passenv = DISPLAY,PYTHONPATH,APPDATA setenv = PYTHONPATH = {toxinidir} PYTEST_ADDOPTS = --verbose --capture=no @@ -101,7 +101,7 @@ commands = [testenv:lint] sitepackages = False -passenv = HOMEPATH SSH_AUTH_SOCK +passenv = HOMEPATH,SSH_AUTH_SOCK deps = {[baselint]deps} commands = pre-commit run --all-files