aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/autograph/examples/integration_tests/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/autograph/examples/integration_tests/BUILD')
-rw-r--r--tensorflow/contrib/autograph/examples/integration_tests/BUILD41
1 files changed, 41 insertions, 0 deletions
diff --git a/tensorflow/contrib/autograph/examples/integration_tests/BUILD b/tensorflow/contrib/autograph/examples/integration_tests/BUILD
new file mode 100644
index 0000000000..d20c17b63b
--- /dev/null
+++ b/tensorflow/contrib/autograph/examples/integration_tests/BUILD
@@ -0,0 +1,41 @@
+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 = "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",
+ ],
+)