mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
65 lines
1.8 KiB
Text
65 lines
1.8 KiB
Text
# --------------------------------------------------------------------
|
|
# Tests from the doc/examples directory.
|
|
# Please keep these sorted alphabetically, but start with the
|
|
# root directory.
|
|
# --------------------------------------------------------------------
|
|
py_test(
|
|
name = "plot_hyperparameter",
|
|
size = "small",
|
|
srcs = ["examples/plot_hyperparameter.py"],
|
|
tags = ["exclusive"]
|
|
)
|
|
|
|
py_test(
|
|
name = "plot_parameter_server",
|
|
size = "medium",
|
|
srcs = ["examples/plot_parameter_server.py"],
|
|
tags = ["exclusive"]
|
|
)
|
|
|
|
py_test(
|
|
name = "plot_pong_example",
|
|
size = "large",
|
|
srcs = ["examples/plot_pong_example.py"],
|
|
tags = ["exclusive"]
|
|
)
|
|
|
|
# Directory: examples/doc_code
|
|
py_test(
|
|
name = "doc_code_tf_example",
|
|
size = "small",
|
|
main = "examples/doc_code/tf_example.py",
|
|
srcs = ["examples/doc_code/tf_example.py"],
|
|
tags = ["exclusive", "tf"]
|
|
)
|
|
|
|
py_test(
|
|
name = "doc_code_torch_example",
|
|
size = "small",
|
|
main = "examples/doc_code/torch_example.py",
|
|
srcs = ["examples/doc_code/torch_example.py"],
|
|
tags = ["exclusive", "pytorch"]
|
|
)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Tests from the doc/source/tune/_tutorials directory.
|
|
# Please keep these sorted alphabetically.
|
|
# --------------------------------------------------------------------
|
|
|
|
py_test(
|
|
name = "tune_sklearn",
|
|
size = "medium",
|
|
main = "source/tune/_tutorials/tune-sklearn.py",
|
|
srcs = ["source/tune/_tutorials/tune-sklearn.py"],
|
|
tags = ["exclusive", "example"],
|
|
args = ["--smoke-test"]
|
|
)
|
|
|
|
py_test(
|
|
name = "tune_serve_integration_mnist",
|
|
size = "medium",
|
|
main = "source/tune/_tutorials/tune-serve-integration-mnist.py",
|
|
srcs = ["source/tune/_tutorials/tune-serve-integration-mnist.py"],
|
|
tags = ["exclusive", "example"],
|
|
args = ["--smoke-test", "--from_scratch", "--day 0"]
|
|
)
|