From 3716de571c603a4bc49de98c26fb5ebd30586791 Mon Sep 17 00:00:00 2001 From: Eric Huang Date: Thu, 13 Mar 2025 11:20:53 -0700 Subject: [PATCH] test: turn off recordable mock for now Summary: Test Plan: --- tests/integration/fixtures/common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/fixtures/common.py b/tests/integration/fixtures/common.py index e410039e7..1878c9e88 100644 --- a/tests/integration/fixtures/common.py +++ b/tests/integration/fixtures/common.py @@ -52,6 +52,8 @@ def llama_stack_client_with_mocked_inference(llama_stack_client, request): If --record-responses is passed, it will call the real APIs and record the responses. """ + # TODO: will rework this to be more stable + return llama_stack_client if not isinstance(llama_stack_client, LlamaStackAsLibraryClient): logging.warning( "llama_stack_client_with_mocked_inference is not supported for this client, returning original client without mocking"