From c03f7fe9bead7d237127b9fc963a51ac1629a4ba Mon Sep 17 00:00:00 2001 From: Sixian Yi Date: Wed, 15 Jan 2025 17:13:36 -0800 Subject: [PATCH] remove cache --- llama_stack/providers/tests/conftest.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/llama_stack/providers/tests/conftest.py b/llama_stack/providers/tests/conftest.py index cf87865be..6cc8a6772 100644 --- a/llama_stack/providers/tests/conftest.py +++ b/llama_stack/providers/tests/conftest.py @@ -49,15 +49,10 @@ class TestConfig(BaseModel): memory: Optional[APITestConfig] = Field(default=None) -CONFIG_CACHE = None - - def try_load_config_file_cached(config): config_file = config.getoption("--config") if config_file is None: return None - if CONFIG_CACHE is not None: - return CONFIG_CACHE config_file_path = Path(__file__).parent / config_file if not config_file_path.exists():