aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/graph_editor/BUILD
diff options
context:
space:
mode:
authorGravatar Frank Perbet <fkp@google.com>2017-03-10 02:44:38 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-10 03:12:48 -0800
commit411f26595861ca28809e3178f79fadcf378cabd6 (patch)
tree4f00599656a8b65d13fa046d274eb47558ed8695 /tensorflow/contrib/graph_editor/BUILD
parent2f4a8bc5b3bb50dbc1d8c33e19bfda7d357a8986 (diff)
graph_editor: move match.py into the the test folder as it is not meant to be part of the graph_editor public API.
Change: 149741516
Diffstat (limited to 'tensorflow/contrib/graph_editor/BUILD')
-rw-r--r--tensorflow/contrib/graph_editor/BUILD21
1 files changed, 16 insertions, 5 deletions
diff --git a/tensorflow/contrib/graph_editor/BUILD b/tensorflow/contrib/graph_editor/BUILD
index 66fa06d84e..6902808ed3 100644
--- a/tensorflow/contrib/graph_editor/BUILD
+++ b/tensorflow/contrib/graph_editor/BUILD
@@ -14,7 +14,6 @@ py_library(
srcs = [
"__init__.py",
"edit.py",
- "match.py",
"reroute.py",
"select.py",
"subgraph.py",
@@ -72,7 +71,10 @@ py_test(
py_test(
name = "match_test",
- srcs = ["tests/match_test.py"],
+ srcs = [
+ "tests/match.py",
+ "tests/match_test.py",
+ ],
srcs_version = "PY2AND3",
deps = [
":graph_editor_py",
@@ -100,7 +102,10 @@ py_test(
py_test(
name = "reroute_test",
- srcs = ["tests/reroute_test.py"],
+ srcs = [
+ "tests/match.py",
+ "tests/reroute_test.py",
+ ],
srcs_version = "PY2AND3",
deps = [
":graph_editor_py",
@@ -114,7 +119,10 @@ py_test(
py_test(
name = "edit_test",
- srcs = ["tests/edit_test.py"],
+ srcs = [
+ "tests/edit_test.py",
+ "tests/match.py",
+ ],
srcs_version = "PY2AND3",
deps = [
":graph_editor_py",
@@ -128,7 +136,10 @@ py_test(
py_test(
name = "transform_test",
- srcs = ["tests/transform_test.py"],
+ srcs = [
+ "tests/match.py",
+ "tests/transform_test.py",
+ ],
srcs_version = "PY2AND3",
deps = [
":graph_editor_py",