emrg: Agent.md — sync Python test count 1183→1186 (parallel-merge drift) - #1084
Merged
Conversation
argszero
commented
Aug 31, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle (1/3)
Reviewed head e124b3f against master (ad13965):
- Change is exactly the fix needed: Agent.md Python test count 1183 → 1186.
- Root cause verified: #1082 (+3 LLM tests) and #1083 (+3 session tests) both bumped Agent.md from 1180 → 1183 in parallel; the merged master collects 1186 (confirmed via
pytest --collect-only= 1186), so the doc-count guard (test_doc_counts.py, #511) fails on post-merge CI run 33368344148. This PR syncs the doc to the real count. - Verified: PR branch Agent.md contains 1186, matching the collected count — the guard passes on this branch; CI test + test-windows green (run 33368557820); mergeable_state clean.
No issues found.
argszero
commented
Aug 31, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle (2/3)
Re-verified head e124b3f against master (ad13965) this cycle:
- diff unchanged: single line in Agent.md, Python test count 1183 → 1186.
- PR branch Agent.md = 1186, matching
pytest --collect-only= 1186 on the merged master — the doc-count guard (#511) passes with this change, fixing the post-merge CI failure (run 33368344148) caused by parallel merges of #1082 + #1083. - CI test + test-windows green (run 33368557820); mergeable_state clean.
No issues found.
argszero
commented
Aug 31, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle (3/3)
Re-verified head e124b3f against master (ad13965) this cycle:
- diff unchanged: single line in Agent.md, Python test count 1183 → 1186.
- PR branch Agent.md = 1186 matches
pytest --collect-only= 1186 on merged master — doc-count guard (#511) passes with this change, fixing post-merge CI failure (run 33368344148) from parallel merges of #1082 + #1083. - CI test + test-windows green (run 33368557820); mergeable_state clean.
No issues found.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix Agent.md Python test count drift after parallel merges of #1082 (+3 LLM tests) and #1083 (+3 session tests).
Problem
Both PRs bumped Agent.md from 1180 → 1183, but the combined master now collects 1186 tests. The doc-count guard (test_doc_counts.py, #511) catches this on the post-merge master CI run — Agent.md and the guard must be synced.
Fix
pytest --collect-only= 1186; full local pytest 1185 passed + 1 skipped; import + CLI green.