aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/periodic_resample/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/periodic_resample/BUILD')
-rw-r--r--tensorflow/contrib/periodic_resample/BUILD18
1 files changed, 18 insertions, 0 deletions
diff --git a/tensorflow/contrib/periodic_resample/BUILD b/tensorflow/contrib/periodic_resample/BUILD
index 71582f9c9a..bd9078ae76 100644
--- a/tensorflow/contrib/periodic_resample/BUILD
+++ b/tensorflow/contrib/periodic_resample/BUILD
@@ -6,6 +6,7 @@ exports_files(["LICENSE"])
load(
"//tensorflow:tensorflow.bzl",
+ "py_test",
"tf_gen_op_libs",
"tf_custom_op_library",
"tf_custom_op_py_library",
@@ -64,11 +65,28 @@ py_library(
"python/__init__.py",
],
srcs_version = "PY2AND3",
+ tags = [
+ "notap",
+ ],
deps = [
":periodic_resample_op_py",
],
)
+py_test(
+ name = "periodic_resample_op_test",
+ srcs = ["python/kernel_tests/periodic_resample_op_test.py"],
+ srcs_version = "PY2AND3",
+ tags = [
+ "notap",
+ ],
+ deps = [
+ ":init_py",
+ "//tensorflow/contrib/util:util_py",
+ "//tensorflow/python:framework_test_lib",
+ ],
+)
+
# py_library(
# name = "periodic_resample_op_py",
# srcs = ["python/ops/periodic_resample_op.py"],