From 32f18b41cb9a3acc5c4dabb46bbb704476a8f57c Mon Sep 17 00:00:00 2001 From: Alpamys Date: Mon, 6 Jul 2026 20:54:36 +0500 Subject: [PATCH] test(v0.71.32): bump hardcoded recipe-count assertions to 142 --- tests/test_v07124.py | 4 ++-- tests/test_v07130.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_v07124.py b/tests/test_v07124.py index 9011cca..58090d0 100644 --- a/tests/test_v07124.py +++ b/tests/test_v07124.py @@ -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) diff --git a/tests/test_v07130.py b/tests/test_v07130.py index 5625696..d1f8e38 100644 --- a/tests/test_v07130.py +++ b/tests/test_v07130.py @@ -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 # ---------------------------------------------------------------------------