forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
48 lines (42 loc) · 865 Bytes
/
BUILD.bazel
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
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
py_test(
name = "summarize_test",
srcs = [
"berghelroach.py",
"summarize.py",
"summarize_test.py",
],
python_version = "PY3",
)
py_test(
name = "berghelroach_test",
srcs = [
"berghelroach.py",
"berghelroach_test.py",
],
python_version = "PY3",
)
jasmine_node_test(
name = "script_test",
srcs = ["script_test.js"],
data = ["js-srcs"],
deps = [
"@npm//jasmine",
],
)
filegroup(
name = "js-srcs",
srcs = glob(["*.js"]),
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)