From 257cde3041fd74121867d26ca3c30cd1d1e680af Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Mon, 14 Jul 2025 14:27:11 -0400 Subject: [PATCH] strip @pytest.mark.asyncio --- tests/unit/providers/utils/test_model_registry.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/unit/providers/utils/test_model_registry.py b/tests/unit/providers/utils/test_model_registry.py index 113d802df..1a1705961 100644 --- a/tests/unit/providers/utils/test_model_registry.py +++ b/tests/unit/providers/utils/test_model_registry.py @@ -184,7 +184,6 @@ async def test_unregister_model_during_init(helper: ModelRegistryHelper, known_m assert helper.get_provider_model_id(known_model.provider_resource_id) is None -@pytest.mark.asyncio async def test_register_model_from_check_model_availability( helper_with_dynamic_models: MockModelRegistryHelperWithDynamicModels, dynamic_model: Model ) -> None: @@ -206,7 +205,6 @@ async def test_register_model_from_check_model_availability( ) -@pytest.mark.asyncio async def test_register_model_not_in_static_or_dynamic( helper_with_dynamic_models: MockModelRegistryHelperWithDynamicModels, unknown_model: Model ) -> None: @@ -227,7 +225,6 @@ async def test_register_model_not_in_static_or_dynamic( assert "..." in error_str # "..." should be in error message -@pytest.mark.asyncio async def test_register_alias_for_dynamic_model( helper_with_dynamic_models: MockModelRegistryHelperWithDynamicModels, dynamic_model: Model ) -> None: