Fix utils import issue for nightly tests (#13944)

This commit is contained in:
alisonshao
2025-11-27 15:24:27 -08:00
committed by GitHub
parent 051ad83347
commit bce40fa217
11 changed files with 55 additions and 23 deletions
+8 -1
View File
@@ -13,10 +13,17 @@
# ==============================================================================
import multiprocessing as mp
import sys
import unittest
from pathlib import Path
import torch
from utils import CI_MULTI_LORA_MODELS, run_lora_test_one_by_one
# Add test directory to path for lora_utils import
# TODO: can be removed after migration
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
from lora_utils import CI_MULTI_LORA_MODELS, run_lora_test_one_by_one
from sglang.test.ci.ci_register import register_cuda_ci