[CI] Move CPU-only unit tests to the CPU suite and trim dead 5090 registrations (#33654)

This commit is contained in:
Liangsheng Yin
2026-08-05 01:43:29 -07:00
committed by GitHub
parent 98ed5554bb
commit c0d5ebd6c4
30 changed files with 144 additions and 166 deletions
@@ -41,10 +41,9 @@ from unittest.mock import Mock, patch
import pytest
from sglang.test.ci.ci_register import register_amd_ci, register_cuda_ci
from sglang.test.ci.ci_register import register_cpu_ci
register_cuda_ci(est_time=8, stage="base-b", runner_config="1-gpu-small")
register_amd_ci(est_time=8, suite="stage-b-test-1-gpu-small-amd")
register_cpu_ci(est_time=8, suite="base-a-test-cpu")
# Import the actual parallel_state module
parallel_state = pytest.importorskip("sglang.srt.distributed.parallel_state")