-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBUILD.bazel
More file actions
26 lines (23 loc) · 793 Bytes
/
BUILD.bazel
File metadata and controls
26 lines (23 loc) · 793 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
load("@rules_bazel_integration_test//bazel_integration_test:defs.bzl", "integration_test_utils")
# This target collects all of the parent workspace files needed by the child workspaces.
filegroup(
name = "local_repository_files",
srcs = [
"BUILD.bazel",
"MODULE.bazel",
"WORKSPACE",
"//docs:all_files",
"//gcs:all_files",
"//gcs/private:all_files",
"//gcs/private/extensions:all_files",
"//gcs/private/repo_rules:all_files",
"//gcs/private/rules:all_files",
],
visibility = ["//:__subpackages__"],
)
test_suite(
name = "all_integration_tests",
tags = integration_test_utils.DEFAULT_INTEGRATION_TEST_TAGS,
tests = ["//examples:integration_tests"],
visibility = ["//:__subpackages__"],
)