aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/per_file_subdirs/test_target/BUILD.out
blob: f4a92364d8f4da85b2a03a18992348f3b9081730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
load("@rules_python//python:defs.bzl", "py_test")

some_target(
    name = "__test__",
)

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

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