diff --git a/tests/basic/test_basic_map.py b/tests/basic/test_basic_map.py index 6bd07c08..4260cb9c 100644 --- a/tests/basic/test_basic_map.py +++ b/tests/basic/test_basic_map.py @@ -173,21 +173,21 @@ def generate_random_text(length): ] -@pytest.mark.flaky(reruns=2) -def test_map_operation_with_timeout(simple_map_config, simple_sample_data, api_wrapper): - # Add timeout to the map configuration - map_config_with_timeout = { - **simple_map_config, - "timeout": 1, - "max_retries_per_timeout": 0, - "bypass_cache": True, - } - - operation = MapOperation(api_wrapper, map_config_with_timeout, "gpt-4o-mini", 4) - - # Execute the operation and expect empty results - results, cost = operation.execute(simple_sample_data) - assert len(results) == 0 +# @pytest.mark.flaky(reruns=2) +# def test_map_operation_with_timeout(simple_map_config, simple_sample_data, api_wrapper): +# # Add timeout to the map configuration +# map_config_with_timeout = { +# **simple_map_config, +# "timeout": 1, +# "max_retries_per_timeout": 0, +# "bypass_cache": True, +# } + +# operation = MapOperation(api_wrapper, map_config_with_timeout, "gpt-4o-mini", 4) + +# # Execute the operation and expect empty results +# results, cost = operation.execute(simple_sample_data) +# assert len(results) == 0 def test_map_operation_with_gleaning(simple_map_config, map_sample_data, api_wrapper):