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

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

py_test(
    name = "real_test",
    srcs = ["real_test.py"],
    deps = [
        ":python_target_with_test_in_name",
        "@gazelle_python_test_boto3//:pkg",
    ],
)

py_test(
    name = "test_reality",
    srcs = ["test_reality.py"],
    deps = [":python_target_with_test_in_name"],
)