xref: /aosp_15_r20/external/bazelbuild-rules_python/examples/bzlmod/py_proto_library/BUILD.bazel (revision 60517a1edbc8ecf509223e9af94a7adec7d736b8)
1load("@rules_python//python:py_test.bzl", "py_test")
2
3py_test(
4    name = "pricetag_test",
5    srcs = ["test.py"],
6    main = "test.py",
7    deps = [
8        "//py_proto_library/example.com/proto:pricetag_proto_py_pb2",
9    ],
10)
11
12py_test(
13    name = "message_test",
14    srcs = ["message_test.py"],
15    deps = [
16        "//py_proto_library/example.com/another_proto:message_proto_py_pb2",
17    ],
18)
19