mirror of
https://github.com/vale981/ray
synced 2025-03-11 21:56:39 -04:00
13 lines
324 B
Text
13 lines
324 B
Text
# This is a dummy test dependency that causes the above tests to be
|
|
# re-run if any of these files changes.
|
|
py_library(
|
|
name = "dashboard_lib",
|
|
srcs = glob(["**/*.py"],exclude=["tests/*"]),
|
|
)
|
|
|
|
py_test(
|
|
name = "test_dashboard",
|
|
size = "small",
|
|
srcs = glob(["tests/*.py"]),
|
|
deps = [":dashboard_lib"]
|
|
)
|