blob: 6a0673762378342e19c80d840377ecc3e8b3d0a2 [file] [log] [blame]
load("@rules_python//python:defs.bzl", "py_library")
# gazelle:map_kind py_test my_test :mytest.bzl
py_library(
name = "respect_kind_mapping",
srcs = ["__init__.py"],
)
my_test(
name = "respect_kind_mapping_test",
srcs = ["__test__.py"],
main = "__test__.py",
deps = [":respect_kind_mapping"],
)