...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "framework",
5 srcs = [
6 "context.go",
7 "flags.go",
8 "framework.go",
9 "labels.go",
10 ],
11 importpath = "edge-infra.dev/test/framework",
12 visibility = ["//visibility:public"],
13 deps = [
14 "//pkg/lib/build/bazel",
15 "//test/framework/config",
16 "//test/framework/skipper",
17 "@com_github_peterbourgon_ff_v3//:ff",
18 "@com_github_stretchr_testify//suite",
19 "@io_bazel_rules_go//go/runfiles:go_default_library",
20 ],
21)
22
23go_test(
24 name = "framework_test",
25 srcs = ["context_test.go"],
26 embed = [":framework"],
27 deps = ["@com_github_stretchr_testify//assert"],
28)
View as plain text