blob: ffdc4e565cdb9d76f8269e48f221ec421b3655bd [file] [log] [blame] [edit]
# Protobuf python numpy Tests
# This is removed from other tests to keep numpy (and @pip_deps) as a test-only dependency
load("@pip_deps//:requirements.bzl", "requirement")
load("//python:internal.bzl", "internal_py_test")
# TODO: b/278896688 - Remove this target and replace with py_library
exports_files([
"__init__.py",
"numpy_test.py",
])
internal_py_test(
name = "numpy_test",
srcs = ["numpy_test.py"],
visibility = [
"//python:__pkg__",
"//python/pb_unit_tests:__pkg__",
],
deps = [
requirement("numpy"),
],
)