[CI] Skip flaky test in CI for disaggregation group (#32324)

This commit is contained in:
Shangming Cai
2026-07-24 21:59:20 +08:00
committed by GitHub
parent dfaf75b1a6
commit fa243fee40
@@ -8,6 +8,7 @@ from sglang.test.server_fixtures.disaggregation_fixture import (
) )
from sglang.test.test_utils import ( from sglang.test.test_utils import (
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH, DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
is_in_ci,
popen_launch_pd_server, popen_launch_pd_server,
) )
@@ -17,6 +18,7 @@ MIMO_V2_MODEL_PATH = "XiaomiMiMo/MiMo-V2.5"
GSM8K_BASELINE_ACCURACY = 0.93 GSM8K_BASELINE_ACCURACY = 0.93
@unittest.skipIf(is_in_ci(), "Temporarily disable the flaky test.")
class TestDisaggregationDWDPMiMo(PDDisaggregationServerBase): class TestDisaggregationDWDPMiMo(PDDisaggregationServerBase):
"""PD disagg with DWDP prefill (4 GPUs) and DP-attention decode (4 GPUs).""" """PD disagg with DWDP prefill (4 GPUs) and DP-attention decode (4 GPUs)."""