From 8eefbfecdd4f9af6531aad738ba199e1e42a89e2 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Tue, 25 Feb 2025 11:03:38 -0500 Subject: [PATCH] skip -> xfail for image tests --- tests/client-sdk/inference/test_embedding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/client-sdk/inference/test_embedding.py b/tests/client-sdk/inference/test_embedding.py index 0a17ad966..46a901d62 100644 --- a/tests/client-sdk/inference/test_embedding.py +++ b/tests/client-sdk/inference/test_embedding.py @@ -107,7 +107,7 @@ def test_embedding_text(llama_stack_client, embedding_model_id, contents): "list[url,string,base64,text]", ], ) -@pytest.mark.skip(reason="Media is not supported") +@pytest.mark.xfail(reason="Media is not supported") def test_embedding_image(llama_stack_client, embedding_model_id, contents): response = llama_stack_client.inference.embeddings(model_id=embedding_model_id, contents=contents) assert isinstance(response, EmbeddingsResponse)