From 8b24011fd8d0d5061be3ff662d60c843f81e5925 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Thu, 21 May 2026 09:46:18 -0500 Subject: [PATCH] address review: quote paths in test shell commands Quote both the Python executable and script file paths in the run: commands to handle spaces in paths on Windows. --- tests/test_workflows.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_workflows.py b/tests/test_workflows.py index d8b2304ae..6fae039c4 100644 --- a/tests/test_workflows.py +++ b/tests/test_workflows.py @@ -1934,7 +1934,7 @@ steps: steps: - id: attempt type: shell - run: {py} {script_file} + run: '"{py}" "{script_file}"' """ definition = WorkflowDefinition.from_string(yaml_str) engine = WorkflowEngine(project_dir) @@ -1985,7 +1985,7 @@ steps: steps: - id: attempt type: shell - run: {py} {script_file} + run: '"{py}" "{script_file}"' """ definition = WorkflowDefinition.from_string(yaml_str) engine = WorkflowEngine(project_dir) @@ -2031,7 +2031,7 @@ steps: steps: - id: tick type: shell - run: {py} {script_file} + run: '"{py}" "{script_file}"' """ definition = WorkflowDefinition.from_string(yaml_str) engine = WorkflowEngine(project_dir) @@ -2083,7 +2083,7 @@ steps: steps: - id: tick type: shell - run: {py} {script_file} + run: '"{py}" "{script_file}"' """ definition = WorkflowDefinition.from_string(yaml_str) engine = WorkflowEngine(project_dir)