test: exempt MockTransport request-shape embedding tests from VCR replay

This commit is contained in:
mateo-berri 2026-09-01 13:29:12 -07:00
parent 6c26345ab5
commit f4347f25de
2 changed files with 6 additions and 1 deletions

View file

@ -44,7 +44,11 @@ _VCR_AUTO_MARKER_SKIP_FILES = frozenset(
{"test_vcr_redis_persister.py", "test_ws_vcr.py"}
)
_VCR_INCOMPATIBLE_NODEID_SUFFIXES: tuple[str, ...] = ()
_VCR_INCOMPATIBLE_NODEID_SUFFIXES: tuple[str, ...] = (
"test_nvidia_nim.py::test_embedding_nvidia_nim",
"test_litellm_proxy_provider.py::test_litellm_gateway_from_sdk_embedding[False]",
"test_litellm_proxy_provider.py::test_litellm_gateway_from_sdk_embedding[True]",
)
_verbose_state = VerboseReporterState()

View file

@ -90,6 +90,7 @@ _VCR_INCOMPATIBLE_FILES = frozenset(
# carry no real provider cost.
_VCR_INCOMPATIBLE_NODEID_SUFFIXES: tuple[str, ...] = (
"test_router.py::test_router_text_completion_client",
"test_embedding.py::test_encoding_format_omitted_by_default_for_openai_sdk",
)