mirror of
https://github.com/vale981/ray
synced 2025-03-10 05:16:49 -04:00
57 lines
1.5 KiB
Text
57 lines
1.5 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"]
|
||
|
)
|