Add a __init__.py file for tensorflow/compiler/tests.

This is recommended standard, even though it looks like
bazel automatically adds this if it is missing.

PiperOrigin-RevId: 296150499
Change-Id: Iadf194be068d81aa07f4365b1057f3b7c28a6190
This commit is contained in:
Adrian Kuegel 2020-02-20 00:58:38 -08:00 committed by TensorFlower Gardener
parent 0a04d3e52d
commit 3bc949d1e3
2 changed files with 4 additions and 1 deletions

View File

@ -61,7 +61,10 @@ py_library(
py_library(
name = "test_utils",
testonly = 1,
srcs = ["test_utils.py"],
srcs = [
"__init__.py",
"test_utils.py",
],
srcs_version = "PY2AND3",
deps = [
"//third_party/py/numpy",

View File