From d71f39491118d05ce36a7926a08f651420f7433b Mon Sep 17 00:00:00 2001 From: tegwick Date: Tue, 16 Jun 2026 02:41:26 +0200 Subject: [PATCH] Update gap report test for hub-core publish pass Roster publish_fail count is now 12 after hub-core Gitea publish unblocked. --- tests/test_reports.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_reports.py b/tests/test_reports.py index a056801..1bd6573 100644 --- a/tests/test_reports.py +++ b/tests/test_reports.py @@ -97,15 +97,15 @@ def test_collect_gap_report_from_roster(): roster = root / "registry/federation/local-repo-roster.yaml" report = collect_gap_report(roster) assert report["summary"]["total"] == 60 - assert len(report["publish_fail"]) == 13 + assert len(report["publish_fail"]) == 12 assert report["empty_scaffold_count"] >= 40 def test_format_gap_markdown_lists_publish_fail(): report = { "roster_path": "/tmp/roster.yaml", - "summary": {"total": 60, "established": 60, "publish_pass": 47}, - "publish_fail": [{"slug": "hub-core", "publish_note": "missing repo"}], + "summary": {"total": 60, "established": 60, "publish_pass": 48}, + "publish_fail": [{"slug": "inter-hub", "publish_note": "missing repo"}], "empty_scaffold_count": 1, "empty_scaffolds": ["ops-bridge"], "seeded_repos": [], @@ -113,7 +113,7 @@ def test_format_gap_markdown_lists_publish_fail(): "local_capability_count": 3, } text = format_gap_markdown(report) - assert "hub-core" in text + assert "inter-hub" in text assert "ops-bridge" in text