ray/dashboard/BUILD

20 lines
452 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 = "small",
include = ["**/test*.py"],
exclude = ["modules/test/**"],
extra_srcs = [],
tags = ["exclusive"],
)