From 0f95a1c3f2d7b1b5e2ab8193cfb679dd8f64de63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Lucchesi?= Date: Wed, 29 Oct 2025 16:10:35 +0100 Subject: [PATCH] [CI] Fix flaky `test_two_responses_with_same_prev_id` test (#27745) Signed-off-by: NickLucche --- tests/v1/entrypoints/openai/responses/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/v1/entrypoints/openai/responses/conftest.py b/tests/v1/entrypoints/openai/responses/conftest.py index ad7594a3dd6dd..032ed42f43d1b 100644 --- a/tests/v1/entrypoints/openai/responses/conftest.py +++ b/tests/v1/entrypoints/openai/responses/conftest.py @@ -6,7 +6,7 @@ import pytest_asyncio from tests.utils import RemoteOpenAIServer # Use a small reasoning model to test the responses API. -MODEL_NAME = "Qwen/Qwen3-0.6B" +MODEL_NAME = "Qwen/Qwen3-1.7B" @pytest.fixture(scope="module")