From 6ce4b2a26f8cee9b8b6ed7d09ea3508cc57486f7 Mon Sep 17 00:00:00 2001 From: Swapna Lekkala Date: Wed, 1 Oct 2025 10:39:47 -0700 Subject: [PATCH] fix test --- tests/integration/vector_io/test_openai_vector_stores.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/integration/vector_io/test_openai_vector_stores.py b/tests/integration/vector_io/test_openai_vector_stores.py index 8df8a6d2a..c0615be58 100644 --- a/tests/integration/vector_io/test_openai_vector_stores.py +++ b/tests/integration/vector_io/test_openai_vector_stores.py @@ -18,13 +18,6 @@ from llama_stack.log import get_logger logger = get_logger(name=__name__, category="vector_io") -@pytest.fixture(autouse=True) -def rate_limit_between_tests(): - """Add 10 second delay between integration tests to prevent rate limiting.""" - yield # Run the test first - time.sleep(10) # Delay after each test - - def skip_if_provider_doesnt_support_openai_vector_stores(client_with_models): vector_io_providers = [p for p in client_with_models.providers.list() if p.api == "vector_io"] for p in vector_io_providers: