skip -> xfail for image tests

This commit is contained in:
Matthew Farrellee 2025-02-25 11:03:38 -05:00
parent d4c3aee490
commit 8eefbfecdd

View file

@ -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)