mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-07-29 02:33:33 +00:00
Stop PrintStyle from creating per-process HTML files under /a0/logs and remove the obsolete tracked folder scaffolding. Delete existing legacy log directories during startup migration so self-updated and manually upgraded installations are cleaned automatically. Point plugin debugging guidance to Docker output and add regression coverage for repeatable cleanup.
16 lines
481 B
Python
16 lines
481 B
Python
from helpers import files, migration
|
|
|
|
|
|
def test_cleanup_obsolete_removes_legacy_logs(tmp_path, monkeypatch):
|
|
logs = tmp_path / "logs"
|
|
logs.mkdir()
|
|
(logs / "old.html").write_text("old log", encoding="utf-8")
|
|
keep = tmp_path / "keep.txt"
|
|
keep.write_text("keep", encoding="utf-8")
|
|
monkeypatch.setattr(files, "_base_dir", str(tmp_path))
|
|
|
|
migration._cleanup_obsolete()
|
|
migration._cleanup_obsolete()
|
|
|
|
assert not logs.exists()
|
|
assert keep.exists()
|