bazel: add filegroup for testdata (#47743)

Add filegroup group to glob all data  in `testdata` directory


## Test plan

`bazel build //...`
This commit is contained in:
Dave Try 2023-02-16 10:51:03 -05:00 committed by GitHub
parent 69ba7823a1
commit 36e2831414
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,5 @@
filegroup(
name = "data",
srcs = glob(["**/**"]),
visibility = ["//lib/codeintel:__subpackages__"],
)