ray/dashboard/BUILD

34 lines
816 B
Text
Raw Normal View History

load("//bazel:python.bzl", "py_test_run_all_subdirectory")
# 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_run_all_subdirectory(
size = "medium",
include = ["**/test*.py"],
exclude = ["modules/test/**", "modules/node/tests/test_node.py", "tests/test_dashboard.py"],
extra_srcs = [],
2021-08-18 18:38:31 -07:00
tags = ["exclusive", "team:serve"],
)
py_test(
name = "test_node",
size = "medium",
srcs = ["modules/node/tests/test_node.py"],
2021-08-18 18:38:31 -07:00
tags = ["exclusive", "team:serve"],
)
py_test(
name = "test_dashboard",
size = "medium",
srcs = ["tests/test_dashboard.py"],
2021-08-18 18:38:31 -07:00
tags = ["exclusive", "team:serve"],
)