mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
22 lines
400 B
Text
22 lines
400 B
Text
![]() |
load("@rules_python//python:defs.bzl", "py_test")
|
||
|
|
||
|
test_srcs = glob(["**/*.py"])
|
||
|
|
||
|
py_test(
|
||
|
name = "serve_failure_smoke_test",
|
||
|
size = "medium",
|
||
|
srcs = test_srcs,
|
||
|
env = {
|
||
|
"IS_SMOKE_TEST": "1",
|
||
|
},
|
||
|
main = "serve_failure.py",
|
||
|
tags = [
|
||
|
"exclusive",
|
||
|
"team:serve",
|
||
|
],
|
||
|
deps = [
|
||
|
"//:ray_lib",
|
||
|
"//python/ray/serve:serve_lib",
|
||
|
],
|
||
|
)
|