Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/integration/test_lists/waives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -478,5 +478,6 @@ disaggregated/test_auto_scaling.py::test_minimal_instances[etcd-round_robin] SKI
disaggregated/test_auto_scaling.py::test_minimal_instances[http-round_robin] SKIP (https://nvbugs/5755963)
unittest/llmapi/apps/test_disagg_serving_perf_metrics.py SKIP (https://nvbugs/5752516)
unittest/_torch/attention/test_trtllm_flashinfer_symbol_collision.py::test_flashinfer_fused_moe_matches_torch_moe SKIP (https://nvbugs/5752521)
unittest/llmapi/apps/_test_openai_responses.py::test_reasoning_effort[DeepSeek-R1-Distill-Qwen-1.5B] SKIP (https://nvbugs/5753250)
unittest/llmapi/apps/_test_openai_responses.py::test_multi_turn_chat[Qwen3/Qwen3-0.6B] SKIP (https://nvbugs/5753250)
cpp/test_multi_gpu.py::TestDisagg::test_symmetric_executor[gpt-2proc-mpi_kvcache-90] SKIP (https://nvbugs/5755941)
disaggregated/test_auto_scaling.py::test_minimal_instances[http-round_robin] SKIP (https://nvbugs/5748564)
Comment thread
EmmaQiaoCh marked this conversation as resolved.
Outdated
accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_guided_decoding[xgrammar-mtp_nextn=0] SKIP (https://nvbugs/5748600)
2 changes: 2 additions & 0 deletions tests/unittest/llmapi/apps/_test_openai_responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ def check_tool_calling(response, first_resp=True, prefix=""):
assert not tool_call_exist, f"{err_msg} tool call content should not exist! ({function_call})"


@pytest.mark.skip(reason="https://nvbugs/5753250")
@pytest.mark.asyncio(loop_scope="module")
async def test_reasoning(client: openai.AsyncOpenAI, model: str):
response = await client.responses.create(
Expand Down Expand Up @@ -129,6 +130,7 @@ async def test_chat(client: openai.AsyncOpenAI, model: str):
check_reponse(response, "test_chat: ")


@pytest.mark.skip(reason="https://nvbugs/5753250")
@pytest.mark.asyncio(loop_scope="module")
async def test_multi_turn_chat(client: openai.AsyncOpenAI, model: str):
response = await client.responses.create(model=model,
Expand Down
Loading