[Infra] - Waive failed cases on release/0.21 (#5674)

Signed-off-by: qqiao <qqiao@nvidia.com>
This commit is contained in:
Emma Qiao 2025-07-03 10:23:54 +08:00 committed by Zhenhuan Chen
parent cdaa6abce7
commit a0135c0f6f
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@ def similar(a, b, threshold=0.9):
return SequenceMatcher(None, a, b).ratio() >= threshold
@pytest.mark.skip(reason="https://nvbugs/5370968")
@pytest.mark.parametrize("model_name", ["DeepSeek-V3-Lite"],
ids=["deepseekv3_lite"])
@pytest.mark.parametrize("backend", ["TRTLLM"], ids=["trtllm"])

View File

@ -54,6 +54,7 @@ def run_client(server_addr, values_to_process):
return f"Error in client: {str(e)}"
@pytest.mark.skip(reason="https://nvbugs/5351244")
@pytest.mark.parametrize("task_type", ["submit", "submit_sync"])
def test_remote_mpi_session(task_type: Literal["submit", "submit_sync"]):
"""Test RemoteMpiPoolSessionClient and RemoteMpiPoolSessionServer interaction"""