aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/autograph/integration_tests/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/examples/autograph/integration_tests/BUILD')
-rw-r--r--tensorflow/examples/autograph/integration_tests/BUILD53
1 files changed, 53 insertions, 0 deletions
diff --git a/tensorflow/examples/autograph/integration_tests/BUILD b/tensorflow/examples/autograph/integration_tests/BUILD
new file mode 100644
index 0000000000..3630b41fc8
--- /dev/null
+++ b/tensorflow/examples/autograph/integration_tests/BUILD
@@ -0,0 +1,53 @@
+licenses(["notice"]) # Apache 2.0
+
+exports_files(["LICENSE"])
+
+load("//tensorflow:tensorflow.bzl", "py_test")
+
+filegroup(
+ name = "all_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "**/METADATA",
+ "**/OWNERS",
+ ],
+ ),
+ visibility = ["//tensorflow:__subpackages__"],
+)
+
+py_test(
+ name = "errors_test",
+ srcs = [
+ "errors_test.py",
+ ],
+ srcs_version = "PY2AND3",
+ tags = ["no_windows"],
+ deps = [
+ "//tensorflow:tensorflow_py",
+ ],
+)
+
+py_test(
+ name = "keras_test",
+ srcs = [
+ "keras_test.py",
+ ],
+ srcs_version = "PY2AND3",
+ tags = ["no_windows"],
+ deps = [
+ "//tensorflow:tensorflow_py",
+ ],
+)
+
+py_test(
+ name = "list_literals_test",
+ srcs = [
+ "list_literals_test.py",
+ ],
+ srcs_version = "PY2AND3",
+ tags = ["no_windows"],
+ deps = [
+ "//tensorflow:tensorflow_py",
+ ],
+)