chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:17:40 +08:00
commit f1825c8ceb
10096 changed files with 2364182 additions and 0 deletions
+90
View File
@@ -0,0 +1,90 @@
# --------------------------------------------------------------------
# Tests from the python/ray/util/dask/tests directory.
# Please keep these sorted alphabetically.
# --------------------------------------------------------------------
load("@rules_python//python:defs.bzl", "py_test")
py_test(
name = "test_dask_callback",
size = "small",
srcs = ["test_dask_callback.py"],
tags = [
"exclusive",
"team:core",
],
deps = ["//python/ray/util/dask:dask_lib"],
)
py_test(
name = "test_dask_callback_client_mode",
size = "medium",
srcs = ["test_dask_callback.py"],
main = "test_dask_callback.py",
tags = [
"client",
"exclusive",
"team:core",
],
deps = ["//python/ray/util/dask:dask_lib"],
)
py_test(
name = "test_dask_optimization",
size = "small",
srcs = ["test_dask_optimization.py"],
tags = [
"exclusive",
"team:core",
],
deps = ["//python/ray/util/dask:dask_lib"],
)
py_test(
name = "test_dask_multi_node",
size = "medium",
srcs = ["test_dask_multi_node.py"],
main = "test_dask_multi_node.py",
tags = [
"exclusive",
"team:core",
],
deps = ["//python/ray/util/dask:dask_lib"],
)
py_test(
name = "test_dask_optimization_client_mode",
size = "small",
srcs = ["test_dask_optimization.py"],
main = "test_dask_optimization.py",
tags = [
"client",
"exclusive",
"team:core",
],
deps = ["//python/ray/util/dask:dask_lib"],
)
py_test(
name = "test_dask_scheduler",
size = "small",
srcs = ["test_dask_scheduler.py"],
tags = [
"exclusive",
"team:core",
],
deps = ["//python/ray/util/dask:dask_lib"],
)
py_test(
name = "test_dask_scheduler_client_mode",
size = "small",
srcs = ["test_dask_scheduler.py"],
main = "test_dask_scheduler.py",
tags = [
"client",
"exclusive",
"team:core",
],
deps = ["//python/ray/util/dask:dask_lib"],
)