test(tests): update test suite to align with isolation refactor and relative skill path

This commit is contained in:
2026-07-24 23:37:19 +09:00
parent cb88771923
commit 9ba45e536f
3 changed files with 15 additions and 24 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ def mam_sandbox(tmp_path, monkeypatch):
Also overrides environments (HOME, PATH, AGENT_SESSIONS_YAML, etc.) for isolation.
"""
# 1. Copy the skill scripts to sandboxed tmp_path/skills and tmp_path/.agents/skills
src_skills = "/home/godopu16/PuKi/laa/canary_projects/multi-agent-mux/.agents/skills"
src_skills = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".agents", "skills"))
shutil.copytree(src_skills, tmp_path / "skills")
shutil.copytree(src_skills, tmp_path / ".agents" / "skills")