mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
49 lines
1.4 KiB
Text
49 lines
1.4 KiB
Text
load("//bazel:python.bzl", "py_test_run_all_subdirectory")
|
|
load("//bazel:python.bzl", "py_test_run_all_notebooks")
|
|
|
|
|
|
filegroup(
|
|
name = "air_examples",
|
|
srcs = glob(["*.ipynb", "*.py"]),
|
|
visibility = ["//doc:__subpackages__"]
|
|
)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Test all doc/source/ray-air/examples code included in rst/md files.
|
|
# --------------------------------------------------------------------
|
|
|
|
py_test_run_all_subdirectory(
|
|
size = "medium",
|
|
include = ["*.py"],
|
|
exclude = [],
|
|
extra_srcs = [],
|
|
data = ["//doc/source/ray-air/examples:air_examples"],
|
|
tags = ["exclusive", "team:ml", "ray_air"],
|
|
)
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
# Test all doc/source/ray-air/examples notebooks.
|
|
# --------------------------------------------------------------------
|
|
|
|
py_test_run_all_notebooks(
|
|
size = "large",
|
|
include = ["*.ipynb"],
|
|
exclude = [
|
|
"huggingface_text_classification.ipynb",
|
|
"feast_example.ipynb", # REGRESSION
|
|
],
|
|
data = ["//doc/source/ray-air/examples:air_examples"],
|
|
tags = ["exclusive", "team:ml", "ray_air"],
|
|
)
|
|
|
|
|
|
# GPU Tests
|
|
|
|
py_test_run_all_notebooks(
|
|
size = "large",
|
|
include = ["huggingface_text_classification.ipynb"],
|
|
exclude = [],
|
|
data = ["//doc/source/ray-air/examples:air_examples"],
|
|
tags = ["exclusive", "team:ml", "gpu", "ray_air"],
|
|
)
|