forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
34 lines (31 loc) · 666 Bytes
/
Copy pathBUILD
File metadata and controls
34 lines (31 loc) · 666 Bytes
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
package(default_visibility = ["//visibility:public"])
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)
py_test(
name = "bigquery_test",
srcs = [
"bigquery.py",
"bigquery_test.py",
],
args = ["--jq=$(location @jq//file)"],
data = [
":all-srcs",
"@jq//file",
],
deps = [
"@dateutil//:dateutil",
"@influxdb//:influxdb",
"@pytz//:pytz",
"@requests//:requests",
"@yaml//:yaml",
],
)