load("@rules_python//python:defs.bzl", "py_library", "py_test") | |
py_library( | |
name = "multiple_tests", | |
srcs = ["__init__.py"], | |
visibility = ["//:__subpackages__"], | |
) | |
py_test( | |
name = "bar_test", | |
srcs = ["bar_test.py"], | |
) | |
py_test( | |
name = "foo_test", | |
srcs = ["foo_test.py"], | |
) |