]> git-server-git.apps.pok.os.sepia.ceph.com Git - ragweed.git/commitdiff
tox: fix whitespace error in passenv
authorCasey Bodley <cbodley@redhat.com>
Wed, 11 Sep 2024 18:19:58 +0000 (14:19 -0400)
committerCasey Bodley <cbodley@redhat.com>
Thu, 12 Sep 2024 14:49:06 +0000 (10:49 -0400)
> py: failed with pass_env values cannot contain whitespace, use comma to have multiple values in a single line, invalid values found 'PYTHONPATH RAGWEED_CONF RAGWEED_STAGES'

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit b5d3e27a282244b6b46ff1e636acc4f683e9f777)

tox.ini

diff --git a/tox.ini b/tox.ini
index 6f9982a1bd153184aadac13eb3384a172278e9ef..3b7960d0b3d7614b539811d91aea2c36b296cea3 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -3,5 +3,8 @@ envlist = py
 
 [testenv]
 deps = -rrequirements.txt
-passenv = PYTHONPATH RAGWEED_CONF RAGWEED_STAGES
+passenv =
+  PYTHONPATH
+  RAGWEED_CONF
+  RAGWEED_STAGES
 commands = python -m pytest {posargs}