aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/autograph/core/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/autograph/core/BUILD')
-rw-r--r--tensorflow/contrib/autograph/core/BUILD36
1 files changed, 26 insertions, 10 deletions
diff --git a/tensorflow/contrib/autograph/core/BUILD b/tensorflow/contrib/autograph/core/BUILD
index 833f9dced8..1873045a92 100644
--- a/tensorflow/contrib/autograph/core/BUILD
+++ b/tensorflow/contrib/autograph/core/BUILD
@@ -19,6 +19,7 @@ py_library(
srcs = [
"config.py",
"converter.py",
+ "errors.py",
"naming.py",
],
srcs_version = "PY2AND3",
@@ -30,6 +31,31 @@ py_library(
],
)
+py_test(
+ name = "errors_test",
+ srcs = ["errors_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":core",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:control_flow_ops",
+ "//tensorflow/python:dtypes",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:random_ops",
+ ],
+)
+
+py_test(
+ name = "naming_test",
+ srcs = ["naming_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":core",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
py_library(
name = "test_lib",
srcs = [
@@ -47,13 +73,3 @@ py_library(
"@six_archive//:six",
],
)
-
-py_test(
- name = "naming_test",
- srcs = ["naming_test.py"],
- srcs_version = "PY2AND3",
- deps = [
- ":core",
- "//tensorflow/python:client_testlib",
- ],
-)