test: prune low-signal assertions and tighten guards
Quality Gate / gate (push) Failing after 47s

Co-authored-by: Copilot App <[email protected]>
This commit is contained in:
Jim Lancaster
2026-08-23 18:48:16 -05:00
co-authored by Copilot App
parent e5410708e4
commit 6c3eac0a44
4 changed files with 10 additions and 16 deletions
-2
View File
@@ -51,9 +51,7 @@ class TestMvpRequirementTraceability:
"""Each MVP in-scope REQ id maps to at least one existing test path."""
project_root = Path(__file__).resolve().parents[1]
assert MVP_REQUIREMENT_TEST_MAP
for requirement_id, mapped_tests in MVP_REQUIREMENT_TEST_MAP.items():
assert requirement_id.startswith("REQ-")
assert mapped_tests, f"No mapped tests for {requirement_id}"
for relative_path in mapped_tests: