load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "integration", srcs = [ "config.go", "test_results_parser.go", ], importpath = "edge-infra.dev/test/framework/integration", visibility = ["//visibility:public"], deps = [ "//test/framework", "//test/framework/config", ], ) go_test( name = "integration_test", srcs = [ "config_example_test.go", "config_test.go", ], embed = [":integration"], deps = [ "//test/framework", "@com_github_stretchr_testify//assert", ], )