This commit is contained in:
2026-03-26 04:24:32 -03:00
parent 08b67f2bb7
commit 08c58a6a9d
43 changed files with 2627 additions and 252 deletions

View File

@@ -25,11 +25,9 @@ def test_soccer_detection_config():
assert isinstance(cfg.target_classes, list)
def test_soccer_brand_dictionary_non_empty():
bd = SoccerBroadcastProfile().brand_dictionary()
assert len(bd.brands) > 0
for canonical, aliases in bd.brands.items():
assert len(aliases) > 0
def test_soccer_resolver_config():
cfg = SoccerBroadcastProfile().resolver_config()
assert cfg.fuzzy_threshold > 0
def test_soccer_vlm_prompt():
@@ -70,4 +68,4 @@ def test_stubs_raise(stub_cls):
with pytest.raises(NotImplementedError):
stub.frame_extraction_config()
with pytest.raises(NotImplementedError):
stub.brand_dictionary()
stub.resolver_config()