aboutsummaryrefslogtreecommitdiff
path: root/examples/bzlmod/py_proto_library/BUILD.bazel
blob: d0bc68302133b90cc708defd1af6366bef7ea241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
load("@rules_python//python:py_test.bzl", "py_test")

py_test(
    name = "pricetag_test",
    srcs = ["test.py"],
    main = "test.py",
    deps = [
        "//py_proto_library/example.com/proto:pricetag_proto_py_pb2",
    ],
)

py_test(
    name = "message_test",
    srcs = ["message_test.py"],
    deps = [
        "//py_proto_library/example.com/another_proto:message_proto_py_pb2",
    ],
)