feat(python-sdk): support bundled preset runtime dependencies

This commit is contained in:
fz
2026-08-14 13:06:21 +08:00
parent 39ada2e763
commit e20f560992
18 changed files with 410 additions and 50 deletions
+4
View File
@@ -92,6 +92,10 @@ def test_stage_runtime_copies_platform_payload(
executable.write_bytes(b"runtime")
executable.chmod(0o755)
expected = {executable.name: b"runtime"}
ripgrep = Path(f"{executable}-rg")
ripgrep.write_bytes(b"ripgrep")
ripgrep.chmod(0o755)
expected[ripgrep.name] = b"ripgrep"
if with_helper:
spawn_helper = Path(f"{executable}-spawn-helper")
spawn_helper.write_bytes(b"helper")