xref: /aosp_15_r20/external/bazelbuild-rules_python/gazelle/python/testdata/multiple_tests/BUILD.out (revision 60517a1edbc8ecf509223e9af94a7adec7d736b8)
1load("@rules_python//python:defs.bzl", "py_library", "py_test")
2
3py_library(
4    name = "multiple_tests",
5    srcs = ["__init__.py"],
6    visibility = ["//:__subpackages__"],
7)
8
9py_test(
10    name = "bar_test",
11    srcs = ["bar_test.py"],
12)
13
14py_test(
15    name = "foo_test",
16    srcs = ["foo_test.py"],
17)
18