Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agent-pack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ contract and introduces the generic builder agent:

| Gateway | Result |
|---|---|
| Repository validation | PASS (78 tests) |
| Repository validation | PASS (92 tests) |
| Builder agent implementation review | PASS |
| Task Execution Policy foundation review | READY FOR INDEPENDENT REVIEW |
| ACP independent review | PASS |
Expand Down
4 changes: 2 additions & 2 deletions tests/test_agent_rollout.py
Original file line number Diff line number Diff line change
Expand Up @@ -754,11 +754,11 @@ def test_mechanical_no_weakened_boundary_after_remediation(self) -> None:
class TestReadmeTestCount:
"""Tests for README current-vs-historical test-count treatment."""

def test_readme_current_state_78_tests(self) -> None:
def test_readme_current_state_92_tests(self) -> None:
"""README gateway table states the current 78-test count."""
readme = Path(__file__).resolve().parents[1] / "agent-pack" / "README.md"
content = readme.read_text(encoding="utf-8")
assert "| Repository validation | PASS (78 tests) |" in content
assert "| Repository validation | PASS (92 tests) |" in content

def test_readme_preserves_historical_33_test_evidence(self) -> None:
"""README retains the historical v0.4.0 33-test release checkpoint."""
Expand Down