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