• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@rules_python//python:defs.bzl", "py_library")
2
3# gazelle:map_kind py_test my_test :mytest.bzl
4
5py_library(
6    name = "respect_kind_mapping",
7    srcs = ["__init__.py"],
8)
9
10my_test(
11    name = "respect_kind_mapping_test",
12    srcs = ["__test__.py"],
13    main = "__test__.py",
14    deps = [":respect_kind_mapping"],
15)
16