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
+53
View File
@@ -0,0 +1,53 @@
load("@rules_python//python:defs.bzl", "py_library")
load("//bazel:python.bzl", "py_test_module_list")
py_library(
name = "conftest",
srcs = glob(["**/conftest.py"]),
visibility = [
"//python/ray/_common/tests:__subpackages__",
],
deps = ["//python/ray/tests:conftest"],
)
# Small tests.
py_test_module_list(
size = "small",
files = [
"test_deprecation.py",
"test_filters.py",
"test_formatters.py",
"test_logging_constants.py",
"test_network_utils.py",
"test_ray_option_utils.py",
"test_retry.py",
"test_signal_semaphore_utils.py",
"test_signature.py",
"test_tls_utils.py",
"test_utils.py",
"test_wait_for_condition.py",
],
tags = [
"exclusive",
"team:core",
],
deps = [
":conftest",
"//:ray_lib",
],
)
py_test_module_list(
size = "large",
files = [
"test_usage_stats.py",
],
tags = [
"exclusive",
"team:core",
],
deps = [
":conftest",
"//:ray_lib",
],
)