Disable Deepep 2 GPU tests (#14111)

This commit is contained in:
Kangyan-Zhou
2025-11-28 13:56:34 -08:00
committed by GitHub
parent 6bad6a3655
commit a102a0507a
2 changed files with 5 additions and 1 deletions
+2
View File
@@ -66,6 +66,8 @@ class TestEpDeepGEMM(CustomTestCase):
"fp8", "fp8",
"--moe-runner-backend", "--moe-runner-backend",
"deep_gemm", "deep_gemm",
"--moe-a2a-backend",
"deepep",
], ],
) )
+3 -1
View File
@@ -135,7 +135,6 @@ suites = {
TestFile("test_modelopt_export.py", 30), TestFile("test_modelopt_export.py", 30),
], ],
"per-commit-2-gpu": [ "per-commit-2-gpu": [
TestFile("ep/test_moe_ep.py", 140),
TestFile("hicache/test_hicache_storage_3fs_backend.py", 200), TestFile("hicache/test_hicache_storage_3fs_backend.py", 200),
TestFile("hicache/test_hicache_storage_file_backend.py", 200), TestFile("hicache/test_hicache_storage_file_backend.py", 200),
TestFile("hicache/test_hicache_storage_mooncake_backend.py", 300), TestFile("hicache/test_hicache_storage_mooncake_backend.py", 300),
@@ -202,6 +201,9 @@ suites = {
], ],
# Nightly test suites have been moved to test/run_suite_nightly.py # Nightly test suites have been moved to test/run_suite_nightly.py
"__not_in_ci__": [ "__not_in_ci__": [
TestFile(
"ep/test_moe_ep.py", 140
), # Temporarily disabled, need to fix ep errors
TestFile("test_release_memory_occupation.py", 200), # Temporarily disabled TestFile("test_release_memory_occupation.py", 200), # Temporarily disabled
TestFile("models/test_dummy_grok_models.py"), TestFile("models/test_dummy_grok_models.py"),
TestFile( TestFile(