forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
73 lines (64 loc) · 1.97 KB
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# --------------------------------------------------------------------
# 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"]
)
py_test(
name = "progress_bar",
size = "small",
srcs = ["examples/progress_bar.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"]
)