]> git.apps.os.sepia.ceph.com Git - ragweed.git/commitdiff
tox: fix whitespace error in passenv wip-tox-passenv-whitespace
authorCasey Bodley <cbodley@redhat.com>
Wed, 11 Sep 2024 18:19:58 +0000 (14:19 -0400)
committerCasey Bodley <cbodley@redhat.com>
Wed, 11 Sep 2024 21:28:17 +0000 (17:28 -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>
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}