aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/subdir_sources/foo/has_test/BUILD.out
blob: a99278ec7942b5faa0aac06341a05cc92a5f4f2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
load("@rules_python//python:defs.bzl", "py_library", "py_test")

py_library(
    name = "has_test",
    srcs = ["python/my_module.py"],
    visibility = ["//:__subpackages__"],
)

py_test(
    name = "has_test_test",
    srcs = ["__test__.py"],
    main = "__test__.py",
    deps = [":has_test"],
)