aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/simple_test_with_conftest/BUILD.out
blob: 18079bf2f47fc6fc3e5113afc6d99f1daa3aee62 (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 = "simple_test_with_conftest",
    srcs = [
        "__init__.py",
        "foo.py",
    ],
    visibility = ["//:__subpackages__"],
)

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

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