...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "integration",
5 srcs = [
6 "config.go",
7 "test_results_parser.go",
8 ],
9 importpath = "edge-infra.dev/test/framework/integration",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//test/framework",
13 "//test/framework/config",
14 ],
15)
16
17go_test(
18 name = "integration_test",
19 srcs = [
20 "config_example_test.go",
21 "config_test.go",
22 ],
23 embed = [":integration"],
24 deps = [
25 "//test/framework",
26 "@com_github_stretchr_testify//assert",
27 ],
28)
View as plain text