| load("@rules_python//python:defs.bzl", "py_library", "py_test") | |
| py_library( | |
| name = "simple_test", | |
| srcs = [ | |
| "__init__.py", | |
| "foo.py", | |
| ], | |
| visibility = ["//:__subpackages__"], | |
| ) | |
| py_test( | |
| name = "simple_test_test", | |
| srcs = ["__test__.py"], | |
| main = "__test__.py", | |
| deps = [":simple_test"], | |
| ) |