aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/simple_test_with_conftest/bar/BUILD.out
blob: 4a1204e989c077e5dde07777d5340e144584bcfb (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
26
27
load("@rules_python//python:defs.bzl", "py_library", "py_test")

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

py_library(
    name = "conftest",
    testonly = True,
    srcs = ["conftest.py"],
    visibility = ["//:__subpackages__"],
)

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