fix bazel test

pull/564/head
Vy Ta 2019-01-08 10:35:23 -08:00
parent 765057765c
commit 4bf6b670a2
1 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,5 @@
package(default_visibility = ["//visibility:public"])
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
@ -22,3 +24,16 @@ go_library(
"//vendor/github.com/onsi/gomega:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)