test(v0.71.32): bump hardcoded recipe-count assertions to 142

This commit is contained in:
Alpamys 2026-07-06 20:54:36 +05:00
parent 9be0e1f329
commit 32f18b41cb
2 changed files with 4 additions and 4 deletions

View File

@ -269,8 +269,8 @@ class TestGlm5RepoIdFix:
class TestCatalogCount:
def test_total_recipe_count_is_138(self) -> None:
assert len(RECIPES) == 138
def test_total_recipe_count_is_142(self) -> None:
assert len(RECIPES) == 142
def test_list_recipes_matches_dict(self) -> None:
assert len(list_recipes()) == len(RECIPES)

View File

@ -721,10 +721,10 @@ class TestRecipes:
assert cfg.training.rollout_backend == "openenv"
assert cfg.training.rollout_func.startswith("soup_cli.envs.")
def test_catalog_size_is_138(self):
def test_catalog_size_is_142(self):
from soup_cli.recipes.catalog import RECIPES
assert len(RECIPES) == 138
assert len(RECIPES) == 142
# ---------------------------------------------------------------------------