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

py_library(
    name = "simple_test",
    srcs = [
        "__init__.py",
        "foo.py",
    ],
    visibility = ["//:__subpackages__"],
)

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