13 lines
325 B
Python
13 lines
325 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "testdata",
|
|
srcs = ["testdata.go"],
|
|
importpath = "github.com/pingcap/tidb/pkg/testkit/testdata",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//pkg/util/context",
|
|
"@com_github_stretchr_testify//require",
|
|
],
|
|
)
|