mirror of
https://github.com/vale981/ray
synced 2025-03-10 13:26:39 -04:00
24 lines
713 B
Text
24 lines
713 B
Text
load("//bazel:python.bzl", "py_test_run_all_notebooks")
|
|
|
|
filegroup(
|
|
name = "data_examples",
|
|
srcs = glob(["*.ipynb"]),
|
|
visibility = ["//doc:__subpackages__"]
|
|
)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Test all doc/source/data/examples notebooks.
|
|
# --------------------------------------------------------------------
|
|
|
|
# big_data_ingestion.ipynb is not tested right now due to large resource requirements
|
|
# and a need of a general overhaul.
|
|
|
|
py_test_run_all_notebooks(
|
|
size = "large",
|
|
include = ["*.ipynb"],
|
|
exclude = [
|
|
"big_data_ingestion.ipynb",
|
|
],
|
|
data = ["//doc/source/data/examples:data_examples"],
|
|
tags = ["exclusive", "team:ml"]
|
|
)
|