Compare commits

..

No commits in common. "8ba76ec1280954a06ac7c1b9157fbf19a72455ac" and "fd6132e6ce7cf36411831355b8e12b19c39a103f" have entirely different histories.

2 changed files with 0 additions and 10 deletions

View file

@ -32,9 +32,6 @@ ReadWritePaths=/opt/teleo-eval/pipeline/pipeline.db-shm
# Agent-specific learnings (all agents share the worktree write path)
ReadWritePaths=/opt/teleo-eval/workspaces/main/agents
# Hourly chat transcript snapshots
ReadWritePaths=/opt/teleo-eval/transcripts
Environment=PYTHONUNBUFFERED=1
EnvironmentFile=-/opt/teleo-eval/secrets/teleo-agent-%i.env

View file

@ -11,13 +11,6 @@ def test_teleo_agent_template_supports_optional_per_agent_env_file():
assert "EnvironmentFile=-/opt/teleo-eval/secrets/teleo-agent-%i.env" in unit
def test_teleo_agent_template_allows_transcript_dumps_under_strict_fs():
unit = (REPO_ROOT / "systemd" / "teleo-agent@.service").read_text()
assert "ProtectSystem=strict" in unit
assert "ReadWritePaths=/opt/teleo-eval/transcripts" in unit
def test_deploy_scripts_restart_wallet_test_agent_when_present():
auto_deploy = (REPO_ROOT / "deploy" / "auto-deploy.sh").read_text()
manual_deploy = (REPO_ROOT / "deploy" / "deploy.sh").read_text()