add unittest/toolchains/BUILD as a test dep (#96)
* add unittest/toolchains/BUILD as a test dep * remove extra whitespace
This commit is contained in:
parent
88904e62e5
commit
c41adf3888
1
BUILD
1
BUILD
|
@ -15,6 +15,7 @@ filegroup(
|
|||
srcs = [
|
||||
"BUILD",
|
||||
"//lib:test_deps",
|
||||
"//toolchains/unittest:test_deps",
|
||||
] + glob(["*.bzl"]),
|
||||
)
|
||||
|
||||
|
|
|
@ -47,3 +47,12 @@ toolchain(
|
|||
toolchain = ":bash",
|
||||
toolchain_type = TOOLCHAIN_TYPE,
|
||||
)
|
||||
|
||||
filegroup(
|
||||
name = "test_deps",
|
||||
testonly = True,
|
||||
srcs = [
|
||||
"BUILD",
|
||||
],
|
||||
visibility = ["//:__pkg__"],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue