aboutsummaryrefslogtreecommitdiff
path: root/gazelle/testdata/python_target_with_test_in_name/BUILD.out
blob: 72a648ffe59dc6f0053bad0ffde745b84c3d02b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
load("@rules_python//python:defs.bzl", "py_library")

py_library(
    name = "python_target_with_test_in_name",
    srcs = [
        "__init__.py",
        "not_a_real_test.py",
        "test_not_a_real.py",
    ],
    visibility = ["//:__subpackages__"],
    deps = ["@gazelle_python_test_boto3//:pkg"],
)