1load("@io_bazel_rules_go//go:def.bzl", "go_test") 2 3go_test( 4 name = "testdata_test", 5 srcs = ["e2e_test.go"], 6 tags = [ 7 "end-to-end", 8 "ignore-test", 9 ], 10 visibility = ["//visibility:public"], 11 deps = [ 12 "//test/f2", 13 "//test/f2/x/ktest", 14 ], 15)