From 3bc949d1e3c841de884fc20e7527ddf9398b816b Mon Sep 17 00:00:00 2001 From: Adrian Kuegel Date: Thu, 20 Feb 2020 00:58:38 -0800 Subject: [PATCH] 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 --- tensorflow/compiler/tests/BUILD | 5 ++++- tensorflow/compiler/tests/__init__.py | 0 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 tensorflow/compiler/tests/__init__.py diff --git a/tensorflow/compiler/tests/BUILD b/tensorflow/compiler/tests/BUILD index e3a62b3fa7b..203ef51c842 100644 --- a/tensorflow/compiler/tests/BUILD +++ b/tensorflow/compiler/tests/BUILD @@ -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", diff --git a/tensorflow/compiler/tests/__init__.py b/tensorflow/compiler/tests/__init__.py new file mode 100644 index 00000000000..e69de29bb2d