Unverified Commit 17b4d85f authored by Michael Goin's avatar Michael Goin Committed by GitHub
Browse files

[CI][TPU] Skip structured outputs+spec decode tests on TPU (#17510)


Signed-off-by: default avatarmgoin <mgoin64@gmail.com>
parent 1144a8ef
......@@ -81,6 +81,9 @@ def test_structured_output(
):
monkeypatch.setenv("VLLM_USE_V1", "1")
if current_platform.is_tpu() and speculative_config:
pytest.skip("TPU does not support speculative decoding")
# Don't use eager execution on TPUs because we want to test for no
# recompilation at runtime
enforce_eager = bool(not current_platform.is_tpu())
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment