Skip to content

Commit 623f29d

Browse files
committed
squash: missed one
1 parent 7676aa4 commit 623f29d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tmt/base/plan.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,11 @@ def __init__(
336336
self._initialize_worktree()
337337

338338
# Expand all environment and context variables in the node
339-
with self.environment.as_environ():
339+
environment = Environment()
340+
341+
environment.update(self.environment, self.intrinsic_environment)
342+
343+
with environment.as_environ():
340344
expand_node_data(node.data, self.fmf_context) # pyright: ignore[reportUnknownVariableType, reportUnknownArgumentType]
341345

342346
# Initialize test steps

0 commit comments

Comments
 (0)