Skip to content

Commit a30b6d1

Browse files
committed
fix pass through handling
1 parent 45fc338 commit a30b6d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/setup_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def handle_test_env() -> None:
166166

167167
# Handle pass through env vars.
168168
for var in PASS_THROUGH_ENV:
169-
if is_set(var) or getattr(opts, var):
169+
if is_set(var) or getattr(opts, var.lower()):
170170
write_env(var, os.environ[var])
171171

172172
if extra := EXTRAS_MAP.get(test_name, ""):

0 commit comments

Comments
 (0)