What happened
The merge commit for PR #586 (agent_chat extraction, merged 2026-08-11 18:38 UTC) turned main's CI red:
Root cause
PR #586 removed the in-tree agent_chat test suite (it now lives in NOVA-Openclaw/agent-chat), but the CI workflow still explicitly references tests/install/test_agent_chat_installer.bats. The failure was visible on the feat/579-extract-agent-chat branch runs (16:30–18:37 UTC, all red for the same reason) before merge.
Fix
Remove (or glob-ify) the stale test-file reference in the workflow's Installer Tests job so it only runs files that exist in this repo post-extraction.
Related
What happened
The merge commit for PR #586 (agent_chat extraction, merged 2026-08-11 18:38 UTC) turned main's CI red:
Test file "/home/runner/work/nova-mind/nova-mind/tests/install/test_agent_chat_installer.bats" does not exist→ exit 1Root cause
PR #586 removed the in-tree agent_chat test suite (it now lives in NOVA-Openclaw/agent-chat), but the CI workflow still explicitly references
tests/install/test_agent_chat_installer.bats. The failure was visible on thefeat/579-extract-agent-chatbranch runs (16:30–18:37 UTC, all red for the same reason) before merge.Fix
Remove (or glob-ify) the stale test-file reference in the workflow's Installer Tests job so it only runs files that exist in this repo post-extraction.
Related