Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions test/srt/test_qwen3_next_deterministic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@

from sglang.test.test_deterministic_utils import (
COMMON_SERVER_ARGS,
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
DEFAULT_URL_FOR_TEST,
TestDeterministicBase,
popen_launch_server,
)

QWEN3_NEXT = "Qwen/Qwen3-Next-80B-A3B-Instruct"
Expand All @@ -29,26 +26,6 @@ def get_server_args(cls):
args.extend(["--attention-backend", "flashinfer", "--tp", "4"])
return args

@classmethod
def setUpClass(cls):
import os

cls.model = cls.get_model()
cls.base_url = DEFAULT_URL_FOR_TEST
if "--attention-backend" not in cls.get_server_args():
raise unittest.SkipTest("Skip the base test class")

custom_env = os.environ.copy()
custom_env["SGLANG_BATCH_INVARIANT_OPS_ENABLE_MM_DEEPGEMM"] = "false"

cls.process = popen_launch_server(
cls.model,
cls.base_url,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
other_args=cls.get_server_args(),
env=custom_env,
)


class TestTritonDeterministic(TestDeterministicBase):
@classmethod
Expand All @@ -62,26 +39,6 @@ def get_server_args(cls):
args.extend(["--attention-backend", "triton", "--tp", "4"])
return args

@classmethod
def setUpClass(cls):
import os

cls.model = cls.get_model()
cls.base_url = DEFAULT_URL_FOR_TEST
if "--attention-backend" not in cls.get_server_args():
raise unittest.SkipTest("Skip the base test class")

custom_env = os.environ.copy()
custom_env["SGLANG_BATCH_INVARIANT_OPS_ENABLE_MM_DEEPGEMM"] = "false"

cls.process = popen_launch_server(
cls.model,
cls.base_url,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
other_args=cls.get_server_args(),
env=custom_env,
)


if __name__ == "__main__":
unittest.main()
Loading