Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separate computer_vision.py into its own test of enormous size. #35616

Merged
merged 5 commits into from
May 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions doc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,23 @@ py_test_run_all_subdirectory(
size = "large",
include = ["source/ray-air/doc_code/*.py"],
exclude = [
# Too large. Use a custom test below.
"source/ray-air/doc_code/computer_vision.py",
"source/ray-air/doc_code/hf_trainer.py", # Too large
"source/ray-air/doc_code/predictors.py",
],
extra_srcs = [],
tags = ["exclusive", "team:ml"],
)

py_test(
size = "enormous",
name = "computer_vision_test",
main = "source/ray-air/doc_code/computer_vision.py",
srcs = ["source/ray-air/doc_code/computer_vision.py"],
tags = ["exclusive", "team:ml"],
)

# --------------------------------------------------------------------
# Test all doc/source/train/doc_code code included in rst/md files.
# --------------------------------------------------------------------
Expand Down