Enable by default new scheduler (#12735)

This commit is contained in:
Eric Liang
2020-12-19 13:22:24 -08:00
committed by GitHub
parent 5d3c9c8861
commit 64c97d25d3
9 changed files with 50 additions and 58 deletions
+1 -1
View File
@@ -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
View File
@@ -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",