forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock_BUILD
72 lines (62 loc) · 1.21 KB
/
mock_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
# This is a mock build file used for testing
# If you make changes here, also edit test_bazel_sharding.py
py_test(
name = "test_default",
srcs = ["mock_file"],
tags = ["manual"],
)
py_test(
name = "test_small",
size = "small",
srcs = ["mock_file"],
tags = ["size"],
)
py_test(
name = "test_medium",
size = "medium",
srcs = ["mock_file"],
tags = ["size"],
)
py_test(
name = "test_large",
size = "large",
srcs = ["mock_file"],
tags = ["size"],
)
py_test(
name = "test_enormous",
size = "enormous",
srcs = ["mock_file"],
tags = ["size", "huge"],
)
py_test(
name = "test_short",
timeout = "short",
srcs = ["mock_file"],
tags = ["timeout"],
)
py_test(
name = "test_moderate",
timeout = "moderate",
srcs = ["mock_file"],
tags = ["timeout"],
)
py_test(
name = "test_long",
timeout = "long",
srcs = ["mock_file"],
tags = ["timeout"],
)
py_test(
name = "test_eternal",
timeout = "eternal",
srcs = ["mock_file"],
tags = ["timeout", "huge"],
)
py_test(
name = "test_both_size_and_timeout",
size = "medium",
timeout = "long",
srcs = ["mock_file"],
tags = ["size", "timeout"],
)