1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "testutils", 5 testonly = True, 6 srcs = ["testutils.go"], 7 importpath = "go.skia.org/skia/infra/bots/task_drivers/testutils", 8 visibility = ["//visibility:public"], 9 deps = [ 10 "@com_github_stretchr_testify//assert", 11 "@com_github_stretchr_testify//require", 12 "@org_skia_go_infra//task_driver/go/td", 13 ], 14) 15