[CI] Whisper tests enforce_eager=False (#33098)

Signed-off-by: NickLucche <nlucches@redhat.com>
This commit is contained in:
Nicolò Lucchesi
2026-01-28 18:36:56 +01:00
committed by GitHub
parent f210f0b7b1
commit 8ebf372e9d

View File

@@ -16,12 +16,11 @@ import soundfile as sf
from ...utils import RemoteOpenAIServer
MODEL_NAME = "openai/whisper-large-v3-turbo"
SERVER_ARGS = ["--enforce-eager"]
@pytest.fixture(scope="module")
def server():
with RemoteOpenAIServer(MODEL_NAME, SERVER_ARGS) as remote_server:
with RemoteOpenAIServer(MODEL_NAME, []) as remote_server:
yield remote_server