forked from GoogleCloudDataproc/initialization-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
94 lines (88 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package(default_visibility = ["//visibility:public"])
test_suite(
name = "DataprocInitActionsTestSuite",
tests = [
":test_cloud_sql_proxy",
":test_dr_elephant",
":test_hive_hcatalog",
":test_starburst_presto",
"//alluxio:test_alluxio",
"//bigtable:test_bigtable",
"//conda:test_conda",
"//connectors:test_connectors",
"//datalab:test_datalab",
"//drill:test_drill",
"//flink:test_flink",
"//ganglia:test_ganglia",
"//gpu:test_gpu",
"//hbase:test_hbase",
"//hue:test_hue",
"//jupyter:test_jupyter",
"//jupyter_sparkmonitor:test_jupyter_sparkmonitor",
"//kafka:test_kafka",
"//knox:test_knox",
"//livy:test_livy",
"//oozie:test_oozie",
"//presto:test_presto",
"//ranger:test_ranger",
"//rapids:test_rapids",
"//rstudio:test_rstudio",
"//solr:test_solr",
"//tez:test_tez",
"//tony:test_tony",
],
)
py_test(
name = "test_cloud_sql_proxy",
size = "enormous",
srcs = ["cloud-sql-proxy/test_cloud_sql_proxy.py"],
data = ["cloud-sql-proxy/cloud-sql-proxy.sh"],
local = True,
shard_count = 3,
deps = [
":pyspark_metastore_test",
"//integration_tests:dataproc_test_case",
"@io_abseil_py//absl/testing:parameterized",
],
)
py_test(
name = "test_dr_elephant",
size = "enormous",
srcs = ["dr-elephant/test_dr_elephant.py"],
data = ["dr-elephant/dr-elephant.sh"],
local = True,
shard_count = 2,
deps = [
"//integration_tests:dataproc_test_case",
"@io_abseil_py//absl/testing:parameterized",
],
)
py_test(
name = "test_hive_hcatalog",
size = "enormous",
srcs = ["hive-hcatalog/test_hive_hcatalog.py"],
data = ["hive-hcatalog/hive-hcatalog.sh"],
local = True,
shard_count = 6,
deps = [
"//integration_tests:dataproc_test_case",
"@io_abseil_py//absl/testing:parameterized",
],
)
py_test(
name = "test_starburst_presto",
size = "enormous",
srcs = ["starburst-presto/test_starburst_presto.py"],
data = ["starburst-presto/presto.sh"],
local = True,
shard_count = 4,
deps = [
"//integration_tests:dataproc_test_case",
"@io_abseil_py//absl/testing:parameterized",
],
)
py_library(
name = "pyspark_metastore_test",
testonly = True,
srcs = ["cloud-sql-proxy/pyspark_metastore_test.py"],
)