mirror of https://github.com/pulumi/pulumi.git
18 lines
436 B
Python
18 lines
436 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "examples_test",
|
|
srcs = [
|
|
"examples_acceptance_test.go",
|
|
"examples_test.go",
|
|
],
|
|
data = glob(["testdata/**"]),
|
|
deps = [
|
|
"//pkg/resource/deploy/providers",
|
|
"//pkg/testing/integration",
|
|
"//sdk/go/common/resource",
|
|
"//sdk/go/common/util/contract",
|
|
"@com_github_stretchr_testify//assert",
|
|
],
|
|
)
|