We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87ca9bc commit 61076d9Copy full SHA for 61076d9
1 file changed
python/openai/tests/test_embeddings.py
@@ -421,9 +421,11 @@
421
@pytest.mark.fastapi
422
class TestEmbeddings:
423
@pytest.fixture(scope="class", autouse=True)
424
- def check_backend(self, backend: str):
+ def check_backend(backend: str):
425
if backend != "vllm":
426
- pytest.skip("These tests only run with vLLM backend")
+ pytest.skip(
427
+ "TRT-LLM backend and Python backend do not support embedding requests"
428
+ )
429
430
@pytest.fixture(scope="class")
431
def client(self, fastapi_client_class_scope):
0 commit comments