From 00cae551d488195720ae541ae8c0a1be895a1561 Mon Sep 17 00:00:00 2001 From: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com> Date: Wed, 5 Aug 2026 00:03:48 -0700 Subject: [PATCH 1/2] [None][test] Unwaive test_ray_disaggregated_serving tp1 and tp2 - Remove in-code skip for tp1 (https://nvbugs/5682551) - Remove waives.txt entry for tp2 (https://nvbugs/5612502) Re-enables Ray disaggregated serving test coverage (UCX backend). Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com> --- tests/integration/defs/examples/test_ray.py | 4 ++-- tests/integration/test_lists/waives.txt | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/integration/defs/examples/test_ray.py b/tests/integration/defs/examples/test_ray.py index 44743f030d48..997ab61b9b17 100644 --- a/tests/integration/defs/examples/test_ray.py +++ b/tests/integration/defs/examples/test_ray.py @@ -62,8 +62,8 @@ def test_llm_inference_distributed_ray(ray_example_root, llm_venv, tp_size, @pytest.mark.skip_less_device(2) @pytest.mark.parametrize("tp_size", [1, 2], ids=["tp1", "tp2"]) def test_ray_disaggregated_serving(ray_example_root, llm_venv, tp_size): - if tp_size == 1: - pytest.skip("https://nvbugs/5682551") + # if tp_size == 1: + # pytest.skip("https://nvbugs/5682551") if get_device_count() < tp_size * 2: pytest.skip(f"Need {tp_size * 2} GPUs.") diff --git a/tests/integration/test_lists/waives.txt b/tests/integration/test_lists/waives.txt index 0b607b022a12..f7a58b0ebd5b 100644 --- a/tests/integration/test_lists/waives.txt +++ b/tests/integration/test_lists/waives.txt @@ -134,7 +134,6 @@ disaggregated/test_workers.py::test_workers_kv_cache_aware_router_eviction[TinyL examples/test_ad_speculative_decoding.py::test_autodeploy_eagle3_one_model_acceptance_rate[trtllm-torch-cudagraph] SKIP (https://nvbugs/6426841) examples/test_ray.py::test_llm_inference_distributed_ray[pp2] SKIP (https://nvbugs/6427411) examples/test_ray.py::test_llm_inference_distributed_ray[tp2pp2] SKIP (https://nvbugs/6427411) -examples/test_ray.py::test_ray_disaggregated_serving[tp2] SKIP (https://nvbugs/5612502) examples/visual_gen/test_visual_gen_cosmos3.py::test_cosmos3_nano_t2i_lpips_against_golden SKIP (https://nvbugs/6418815) examples/visual_gen/test_visual_gen_cosmos3.py::test_cosmos3_nano_t2v_lpips_against_golden SKIP (https://nvbugs/6437341) examples/visual_gen/test_visual_gen_ltx2.py::test_ltx2_cuda_graph_trtllm_backend SKIP (https://nvbugs/6463822) From 77ee2cf8c324182217aa3503ccd38b6924b84c53 Mon Sep 17 00:00:00 2001 From: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com> Date: Wed, 5 Aug 2026 02:42:02 -0700 Subject: [PATCH 2/2] [None][test] Remove leftover commented-out tp1 skip in test_ray_disaggregated_serving Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com> --- tests/integration/defs/examples/test_ray.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration/defs/examples/test_ray.py b/tests/integration/defs/examples/test_ray.py index 997ab61b9b17..be6642e80c06 100644 --- a/tests/integration/defs/examples/test_ray.py +++ b/tests/integration/defs/examples/test_ray.py @@ -62,8 +62,6 @@ def test_llm_inference_distributed_ray(ray_example_root, llm_venv, tp_size, @pytest.mark.skip_less_device(2) @pytest.mark.parametrize("tp_size", [1, 2], ids=["tp1", "tp2"]) def test_ray_disaggregated_serving(ray_example_root, llm_venv, tp_size): - # if tp_size == 1: - # pytest.skip("https://nvbugs/5682551") if get_device_count() < tp_size * 2: pytest.skip(f"Need {tp_size * 2} GPUs.")