Skip to content

Commit 151a332

Browse files
AriehSchneierclaude
andcommitted
Add Bazel build target for extractor_test.go
Generated by manually applying the output from CI's Gazelle check. This adds the go_test target for the new extractor_test.go file. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent b94ab8d commit 151a332

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

go/extractor/BUILD.bazel

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
load("@rules_go//go:def.bzl", "go_library")
1+
load("@rules_go//go:def.bzl", "go_library", "go_test")
22
load("@rules_java//java:defs.bzl", "java_library")
33
load("@rules_pkg//pkg:mappings.bzl", "pkg_files")
44

@@ -60,3 +60,10 @@ pkg_files(
6060
},
6161
visibility = ["//go:__pkg__"],
6262
)
63+
64+
go_test(
65+
name = "extractor_test",
66+
srcs = ["extractor_test.go"],
67+
embed = [":extractor"],
68+
deps = ["@org_golang_x_tools//go/packages"],
69+
)

0 commit comments

Comments
 (0)