[None][fix] avoid ID conversion for non enable_configurable_moe cases. (#10003)

Signed-off-by: Yuxian Qiu <142763828+yuxianq@users.noreply.github.com>
This commit is contained in:
Yuxian Qiu 2025-12-18 13:29:52 +08:00 committed by GitHub
parent 897a38978d
commit bec864a78c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 10 deletions

View File

@ -2211,11 +2211,11 @@ def pytest_generate_tests(metafunc: pytest.Metafunc):
# Test cases that use enable_configurable_moe parameter and need ID conversion
TESTS_WITH_CONFIGURABLE_MOE = [
"TestDeepSeekV3Lite::test_nvfp4_4gpus",
"TestDeepSeekV3Lite::test_fp8_block_scales",
"TestGPTOSS::test_w4_4gpus",
"TestGPTOSS::test_w4_4gpus_online_eplb",
"TestQwen3_30B_A3B::test_w4a8_mxfp4",
"TestDeepSeekV3Lite::test_nvfp4_4gpus[",
"TestDeepSeekV3Lite::test_fp8_block_scales[",
"TestGPTOSS::test_w4_4gpus[",
"TestGPTOSS::test_w4_4gpus_online_eplb[",
"TestQwen3_30B_A3B::test_w4a8_mxfp4[",
]

View File

@ -31,11 +31,11 @@ import re
# Test functions that use enable_configurable_moe parameter and need ID conversion
TESTS_WITH_CONFIGURABLE_MOE = [
"test_fused_moe_nvfp4",
"test_fused_moe_mxfp4_mxfp8",
"test_fused_moe_w4a8_nvfp4_fp8",
"test_fused_moe_wfp4a16",
"test_fused_moe_fp8_blockwise_deepgemm",
"test_fused_moe_nvfp4[",
"test_fused_moe_mxfp4_mxfp8[",
"test_fused_moe_w4a8_nvfp4_fp8[",
"test_fused_moe_wfp4a16[",
"test_fused_moe_fp8_blockwise_deepgemm[",
]