load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "framework", srcs = [ "context.go", "flags.go", "framework.go", "labels.go", ], importpath = "edge-infra.dev/test/framework", visibility = ["//visibility:public"], deps = [ "//pkg/lib/build/bazel", "//test/framework/config", "//test/framework/skipper", "@com_github_peterbourgon_ff_v3//:ff", "@com_github_stretchr_testify//suite", "@io_bazel_rules_go//go/runfiles:go_default_library", ], ) go_test( name = "framework_test", srcs = ["context_test.go"], embed = [":framework"], deps = ["@com_github_stretchr_testify//assert"], )