mirror of https://github.com/kubernetes/kops.git
15 lines
387 B
Python
15 lines
387 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["integration_test.go"],
|
|
data = [
|
|
"//channels:channeldata", # keep
|
|
],
|
|
deps = [
|
|
"//pkg/apis/kops:go_default_library",
|
|
"//tests/integration/channel/simple:go_default_library",
|
|
"//vendor/github.com/blang/semver/v4:go_default_library",
|
|
],
|
|
)
|