We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5048e2 commit a4bf312Copy full SHA for a4bf312
1 file changed
.github/scripts/run_playbook_tests.py
@@ -502,8 +502,8 @@ def run_test(
502
if setup_prefix:
503
# Wrap in a shell so setup commands (e.g. venv activation) run first
504
if is_windows:
505
- shell_cmd = ["powershell", "-Command"]
506
- script_content = f'{setup_prefix}; python "{script_file}"'
+ shell_cmd = ["cmd", "/c"]
+ script_content = f'{setup_prefix} && python "{script_file}"'
507
else:
508
shell_cmd = ["bash", "-c"]
509
script_content = f'{setup_prefix} && python "{script_file}"'
0 commit comments