Revert "Fix DeepSeek V32 FP4 test" (#21003)

This commit is contained in:
Lianmin Zheng
2026-03-20 02:19:28 -07:00
committed by GitHub
parent 112b628227
commit a0a4dae67f
3 changed files with 1 additions and 20 deletions

View File

@@ -865,7 +865,6 @@ def popen_launch_server(
Started subprocess.Popen object
"""
other_args = other_args or []
offline_force_disabled = env.get("HF_HUB_OFFLINE") == "0"
# Auto-detect device if needed
if device == "auto":
@@ -886,7 +885,7 @@ def popen_launch_server(
try:
from sglang.utils import is_in_ci
if is_in_ci() and not offline_force_disabled:
if is_in_ci():
per_run_marker_path = _try_enable_offline_mode_if_cache_complete(
model, env, other_args
)

View File

@@ -1,4 +1,3 @@
import os
import unittest
from types import SimpleNamespace
@@ -47,10 +46,6 @@ class TestDeepseekV32FP4DP(CustomTestCase):
cls.base_url,
timeout=SERVER_LAUNCH_TIMEOUT,
other_args=other_args,
env={
**os.environ,
"HF_HUB_OFFLINE": "0",
},
)
@classmethod
@@ -118,10 +113,6 @@ class TestDeepseekV32FP4TP(CustomTestCase):
cls.base_url,
timeout=SERVER_LAUNCH_TIMEOUT,
other_args=other_args,
env={
**os.environ,
"HF_HUB_OFFLINE": "0",
},
)
@classmethod

View File

@@ -1,4 +1,3 @@
import os
import unittest
from types import SimpleNamespace
@@ -61,10 +60,6 @@ class TestDeepseekV32FP4DPSpecV2(CustomTestCase):
cls.base_url,
timeout=SERVER_LAUNCH_TIMEOUT,
other_args=other_args,
env={
**os.environ,
"HF_HUB_OFFLINE": "0",
},
)
@classmethod
@@ -155,10 +150,6 @@ class TestDeepseekV32FP4TPSpecV2(CustomTestCase):
cls.base_url,
timeout=SERVER_LAUNCH_TIMEOUT,
other_args=other_args,
env={
**os.environ,
"HF_HUB_OFFLINE": "0",
},
)
@classmethod