aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/data/python/kernel_tests/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/data/python/kernel_tests/BUILD')
-rw-r--r--tensorflow/contrib/data/python/kernel_tests/BUILD36
1 files changed, 34 insertions, 2 deletions
diff --git a/tensorflow/contrib/data/python/kernel_tests/BUILD b/tensorflow/contrib/data/python/kernel_tests/BUILD
index d81654e039..3759ba8d5a 100644
--- a/tensorflow/contrib/data/python/kernel_tests/BUILD
+++ b/tensorflow/contrib/data/python/kernel_tests/BUILD
@@ -60,7 +60,7 @@ py_test(
py_test(
name = "csv_dataset_op_test",
- size = "small",
+ size = "medium",
srcs = ["csv_dataset_op_test.py"],
srcs_version = "PY2AND3",
tags = ["no_pip"],
@@ -121,6 +121,7 @@ py_test(
srcs = ["get_single_element_test.py"],
deps = [
"//tensorflow/contrib/data/python/ops:get_single_element",
+ "//tensorflow/contrib/data/python/ops:grouping",
"//tensorflow/python:array_ops",
"//tensorflow/python:client_testlib",
"//tensorflow/python:constant_op",
@@ -128,6 +129,7 @@ py_test(
"//tensorflow/python:errors",
"//tensorflow/python:sparse_tensor",
"//tensorflow/python/data/ops:dataset_ops",
+ "@absl_py//absl/testing:parameterized",
],
)
@@ -188,6 +190,7 @@ py_test(
"optonly",
],
deps = [
+ "//tensorflow/contrib/data/python/ops:batching",
"//tensorflow/contrib/data/python/ops:error_ops",
"//tensorflow/python:array_ops",
"//tensorflow/python:client_testlib",
@@ -207,7 +210,6 @@ py_test(
srcs_version = "PY2AND3",
deps = [
"//tensorflow/contrib/data/python/ops:optimization",
- "//tensorflow/core:protos_all_py",
"//tensorflow/python:client_testlib",
"//tensorflow/python:errors",
"//tensorflow/python/data/ops:dataset_ops",
@@ -228,9 +230,16 @@ cuda_py_test(
"//tensorflow/python:framework_test_lib",
"//tensorflow/python:function",
"//tensorflow/python:resource_variable_ops",
+ "//tensorflow/python/compat:compat",
"//tensorflow/python/data/ops:dataset_ops",
"//tensorflow/python/data/ops:iterator_ops",
],
+ tags = [
+ "manual",
+ "no_oss",
+ "no_windows_gpu" +
+ "notap",
+ ],
)
py_test(
@@ -377,6 +386,7 @@ py_test(
"//tensorflow/python:sparse_tensor",
"//tensorflow/python/data/ops:dataset_ops",
"//third_party/py/numpy",
+ "@absl_py//absl/testing:parameterized",
],
)
@@ -466,6 +476,28 @@ py_test(
)
py_test(
+ name = "window_dataset_op_test",
+ size = "medium",
+ srcs = ["window_dataset_op_test.py"],
+ srcs_version = "PY2AND3",
+ tags = [
+ "no_pip",
+ ],
+ deps = [
+ "//tensorflow/contrib/data/python/ops:batching",
+ "//tensorflow/contrib/data/python/ops:grouping",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:dtypes",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:sparse_tensor",
+ "//tensorflow/python/data/ops:dataset_ops",
+ "//third_party/py/numpy",
+ "@absl_py//absl/testing:parameterized",
+ ],
+)
+
+py_test(
name = "writer_ops_test",
size = "small",
srcs = ["writer_ops_test.py"],