Disable async assert in Nemotron nightly tests (#27838)
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
import unittest
|
import unittest
|
||||||
from types import SimpleNamespace
|
from types import SimpleNamespace
|
||||||
|
|
||||||
|
from sglang.srt.environ import envs
|
||||||
from sglang.srt.utils import kill_process_tree
|
from sglang.srt.utils import kill_process_tree
|
||||||
from sglang.test.ci.ci_register import register_cuda_ci
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.run_eval import run_eval
|
from sglang.test.run_eval import run_eval
|
||||||
@@ -69,6 +70,7 @@ class TestNvidiaNemotron3SuperNVFP4(CustomTestCase):
|
|||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
cls.model = NEMOTRON_3_SUPER_NVFP4_MODEL
|
cls.model = NEMOTRON_3_SUPER_NVFP4_MODEL
|
||||||
cls.base_url = DEFAULT_URL_FOR_TEST
|
cls.base_url = DEFAULT_URL_FOR_TEST
|
||||||
|
with envs.SGLANG_ENABLE_ASYNC_ASSERT.override(0):
|
||||||
cls.process = popen_launch_server(
|
cls.process = popen_launch_server(
|
||||||
cls.model,
|
cls.model,
|
||||||
cls.base_url,
|
cls.base_url,
|
||||||
@@ -89,6 +91,7 @@ class TestNvidiaNemotron3SuperNVFP4MTP(CustomTestCase):
|
|||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
cls.model = NEMOTRON_3_SUPER_NVFP4_MODEL
|
cls.model = NEMOTRON_3_SUPER_NVFP4_MODEL
|
||||||
cls.base_url = DEFAULT_URL_FOR_TEST
|
cls.base_url = DEFAULT_URL_FOR_TEST
|
||||||
|
with envs.SGLANG_ENABLE_ASYNC_ASSERT.override(0):
|
||||||
cls.process = popen_launch_server(
|
cls.process = popen_launch_server(
|
||||||
cls.model,
|
cls.model,
|
||||||
cls.base_url,
|
cls.base_url,
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from sglang.srt.environ import envs
|
||||||
from sglang.test.accuracy_test_runner import AccuracyTestParams
|
from sglang.test.accuracy_test_runner import AccuracyTestParams
|
||||||
from sglang.test.ci.ci_register import register_cuda_ci
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.performance_test_runner import PerformanceTestParams
|
from sglang.test.performance_test_runner import PerformanceTestParams
|
||||||
@@ -76,6 +77,7 @@ class TestNvidiaNemotron3SuperNightly(unittest.TestCase):
|
|||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
with envs.SGLANG_ENABLE_ASYNC_ASSERT.override(0):
|
||||||
run_combined_tests(
|
run_combined_tests(
|
||||||
models=variants,
|
models=variants,
|
||||||
test_name="Nemotron-3-Super-120B-BF16",
|
test_name="Nemotron-3-Super-120B-BF16",
|
||||||
@@ -112,6 +114,7 @@ class TestNvidiaNemotron3SuperNightly(unittest.TestCase):
|
|||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
with envs.SGLANG_ENABLE_ASYNC_ASSERT.override(0):
|
||||||
run_combined_tests(
|
run_combined_tests(
|
||||||
models=variants,
|
models=variants,
|
||||||
test_name="Nemotron-3-Super-120B-NVFP4",
|
test_name="Nemotron-3-Super-120B-NVFP4",
|
||||||
|
|||||||
Reference in New Issue
Block a user