Merge pull request #51807 from mml/sh-test-two

Automatic merge from submit-queue (batch tested with PRs 50579, 50875, 51797, 51807, 51803)

Depend on //cluster/lib instead of :all-srcs.

Cleanup after #51649

Bug: #51642

```release-note
NONE
```

/assign @ixdy
/assign @roberthbailey
This commit is contained in:
Kubernetes Submit Queue 2017-09-03 08:46:28 -07:00 committed by GitHub
commit e6070b9632

View File

@ -51,26 +51,26 @@ pkg_tar(
sh_test(
name = "common_test",
srcs = ["common.sh"],
data = [
":all-srcs",
deps = [
"//cluster/lib",
"//hack/lib",
],
deps = ["//hack/lib"],
)
sh_test(
name = "clientbin_test",
srcs = ["clientbin.sh"],
data = [
":all-srcs",
deps = [
"//cluster/lib",
"//hack/lib",
],
deps = ["//hack/lib"],
)
sh_test(
name = "kube-util_test",
srcs = ["kube-util.sh"],
data = [
":all-srcs",
deps = [
"//cluster/lib",
"//hack/lib",
],
deps = ["//hack/lib"],
)