test: skip files integrations tests for library client

# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-06-05 13:41:47 -07:00
parent 3251b44d8a
commit 7b7a958106

View file

@ -6,9 +6,15 @@
from io import BytesIO
import pytest
def test_openai_client_basic_operations(openai_client):
from llama_stack.distribution.library_client import LlamaStackAsLibraryClient
def test_openai_client_basic_operations(openai_client, client_with_models):
"""Test basic file operations through OpenAI client."""
if isinstance(client_with_models, LlamaStackAsLibraryClient):
pytest.skip("OpenAI files are not supported when testing with library client yet.")
client = openai_client
test_content = b"files test content"