mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 21:38:18 +08:00
Enable by default new scheduler (#12735)
This commit is contained in:
@@ -442,4 +442,4 @@ def format_web_url(url):
|
||||
|
||||
|
||||
def new_scheduler_enabled():
|
||||
return os.environ.get("RAY_ENABLE_NEW_SCHEDULER") == "1"
|
||||
return os.environ.get("RAY_ENABLE_NEW_SCHEDULER", "1") == "1"
|
||||
|
||||
+1
-10
@@ -10,6 +10,7 @@ SRCS = [] + select({
|
||||
|
||||
py_test_module_list(
|
||||
files = [
|
||||
# "test_dynres.py", # dyn res not implemented
|
||||
"test_async.py",
|
||||
"test_actor.py",
|
||||
"test_actor_advanced.py",
|
||||
@@ -40,16 +41,6 @@ py_test_module_list(
|
||||
deps = ["//:ray_lib"],
|
||||
)
|
||||
|
||||
py_test_module_list(
|
||||
files = [
|
||||
"test_dynres.py", # dyn res not implemented
|
||||
],
|
||||
size = "medium",
|
||||
extra_srcs = SRCS,
|
||||
tags = ["exclusive", "medium_size_python_tests_a_to_j", "new_scheduler_broken"],
|
||||
deps = ["//:ray_lib"],
|
||||
)
|
||||
|
||||
py_test_module_list(
|
||||
files = [
|
||||
"test_memory_limits.py",
|
||||
|
||||
Reference in New Issue
Block a user