Merge pull request 'fix: [bug] run_pipeline.py subprocess GBK encoding causes stdout=None on Windows - Closes #84' (#85) from dev/issue-84-encoding-fix into main
CI / test (push) Waiting to run

This commit was merged in pull request #85.
This commit is contained in:
2026-06-03 14:41:20 +08:00
+5 -1
View File
@@ -83,7 +83,7 @@ def run_ir_pipeline(parsed_path: str) -> str | None:
result = subprocess.run(
[sys.executable, str(script_path)],
cwd=str(PROJECT_ROOT),
capture_output=True, text=True,
capture_output=True, text=True, encoding="utf-8",
env=env,
)
if result.returncode != 0:
@@ -111,6 +111,8 @@ def run_acceptance_tests(parsed_json_path: str) -> int:
print("[3/3] Running QE acceptance tests...")
test_dir = PROJECT_ROOT / "tests" / "acceptance"
env = os.environ.copy()
env.setdefault("PYTHONIOENCODING", "utf-8")
result = subprocess.run(
[
sys.executable, "-m", "pytest", str(test_dir),
@@ -120,6 +122,8 @@ def run_acceptance_tests(parsed_json_path: str) -> int:
"--tb=short",
],
cwd=str(PROJECT_ROOT),
encoding="utf-8",
env=env,
)
return result.returncode