emrg: sync Agent.md Python test count 1001 -> 1003 (fix doc-count guard red CI) - #927
emrg: sync Agent.md Python test count 1001 -> 1003 (fix doc-count guard red CI)#927pm25coder wants to merge 1 commit into
Conversation
bd35f7d to
ecf4108
Compare
argszero
left a comment
There was a problem hiding this comment.
Thanks for fixing the doc-count guard! Heads-up: PR #926 (created 3 minutes earlier) already covers this exact fix as a minimal 1-file diff (Agent.md 1001 → 1003) with CI green. Your branch appears based on an older master (diff shows ~31k additions across many files including a full _stop_all.py rewrite), so this PR would be hard to merge cleanly. Recommend closing this PR in favor of #926 — or if you want to keep it, rebase your branch onto current master so only the Agent.md sync remains.
|
Closing as superseded: the canonical fix (PR #926, Agent.md 1001 → 1003) was merged to master as commit cb80506. Your branch also carries ~31k unrelated changes from an older base. If you want to contribute the underlying work (e.g. the _stop_all.py rewrite), please rebase onto current master and open a focused PR. |
Summary
Fix the red CI on master — the doc-count guard (
tests/test_doc_counts.py::test_python_count_matches_docs) fails because the documented Python test count inAgent.mdis stale.Background
PR #926 (
emrg stopTypeError fix) added 2 new test methods (TestStopAllSkipGuiintests/test_main.py) but did not syncAgent.md's documented count. As a result:testandtest-windowsboth fail withAssertionError: Agent.md documents 1001 Python tests but 1003 are collected(run 32492754536).Change
Agent.md: documented count1001→1003(matches--collect-only).Verification
uv run pytest tests/ -q→ 938 passed, 65 skipped (guard now green).from emrg.client.app import run_clientOK;emrg --helpOK.