Skip CI tests added in #24816 (broken on main) (#25329)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Cheng Wan
2026-05-14 18:12:13 -07:00
committed by GitHub
co-authored by Claude Opus 4.7
parent 0fde61535f
commit 1913cb4dbb
2 changed files with 7 additions and 1 deletions
@@ -91,6 +91,7 @@ class TestDSV4FlashFP4H200(ServerSanityMixin, CustomTestCase):
self.assertGreater(metrics["score"], 0.93)
@unittest.skip("broken on main, see #24816")
@unittest.skipUnless(
_flashinfer_has_sm90_cutlass_mxfp4(),
"FlashInfer build lacks SM90 mixed-input MXFP4 helpers (PR #3084, >= 0.6.11)",
@@ -20,7 +20,12 @@ import torch
from sglang.test.ci.ci_register import register_cuda_ci
register_cuda_ci(est_time=120, stage="stage-b", runner_config="1-gpu-large")
register_cuda_ci(
est_time=120,
stage="stage-b",
runner_config="1-gpu-large",
disabled="broken on main, see #24816",
)
flashinfer_fused_moe = pytest.importorskip("flashinfer.fused_moe")