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
+35
View File
@@ -0,0 +1,35 @@
load("@rules_python//python:defs.bzl", "py_library")
load("//bazel:python.bzl", "doctest")
doctest(
size = "small",
data = glob(["**/*.lua.tmpl"]),
files = glob(
["**/*.py"],
exclude = [
"tests/**",
# FIXME: Add the llm tests back with a diff tag.
"llm/**",
# FIXME: Failing on Windows
"gradio_integrations.py",
"_private/benchmarks/**",
],
),
tags = ["team:serve"],
)
# This is a dummy test dependency that causes the above tests to be
# re-run if any of these files changes.
py_library(
name = "serve_lib",
srcs = glob(
["**/*.py"],
exclude = ["tests/**/*.py"],
),
data = glob(["**/*.lua.tmpl"]),
visibility = [
"//python/ray/serve:__pkg__",
"//python/ray/serve:__subpackages__",
"//release:__pkg__",
],
)