Skip to content

Commit

Permalink
n/a
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 245754479
  • Loading branch information
TensorFlow Hub Authors authored and andresusanopinto committed May 2, 2019
1 parent d0a4c42 commit 39d2b2a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/half_plus_two/BUILD
Expand Up @@ -17,6 +17,7 @@ licenses(["notice"]) # Apache 2.0 License
py_binary(
name = "export",
srcs = ["export.py"],
python_version = "PY2",
deps = [
"//tensorflow_hub:expect_tensorflow_installed",
"//tensorflow_hub",
Expand All @@ -27,6 +28,7 @@ py_test(
name = "half_plus_two_test",
srcs = ["half_plus_two_test.py"],
data = [":export"],
python_version = "PY2",
deps = [
"//tensorflow_hub:expect_tensorflow_installed",
"//tensorflow_hub",
Expand Down
1 change: 1 addition & 0 deletions examples/image_retraining/BUILD
Expand Up @@ -8,6 +8,7 @@ py_binary(
srcs = [
"retrain.py",
],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
"//tensorflow_hub:expect_numpy_installed",
Expand Down
2 changes: 2 additions & 0 deletions examples/text_embeddings/BUILD
Expand Up @@ -17,6 +17,7 @@ licenses(["notice"]) # Apache 2.0
py_binary(
name = "export",
srcs = ["export.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [":export_lib"],
)
Expand All @@ -36,6 +37,7 @@ py_library(
py_test(
name = "export_test",
srcs = ["export_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":export_lib",
Expand Down
13 changes: 13 additions & 0 deletions tensorflow_hub/BUILD
Expand Up @@ -77,6 +77,7 @@ py_library(
py_test(
name = "estimator_test",
srcs = ["estimator_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
tags = ["notsan"], # b/111624588
deps = [
Expand All @@ -100,6 +101,7 @@ py_library(
py_test(
name = "feature_column_test",
srcs = ["feature_column_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":tensorflow_hub",
Expand All @@ -123,6 +125,7 @@ py_test(
name = "compressed_module_resolver_test",
size = "medium",
srcs = ["compressed_module_resolver_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
tags = ["nofixdeps"],
deps = [
Expand All @@ -146,6 +149,7 @@ py_library(
py_test(
name = "image_util_test",
srcs = ["image_util_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":image_util",
Expand Down Expand Up @@ -173,6 +177,7 @@ py_library(
py_test(
name = "module_test",
srcs = ["module_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":module",
Expand All @@ -198,6 +203,7 @@ py_library(
py_test(
name = "saved_model_module_test",
srcs = ["saved_model_module_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":saved_model_lib",
Expand Down Expand Up @@ -225,6 +231,7 @@ py_library(
py_test(
name = "native_module_test",
srcs = ["native_module_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":all_protos_py_pb2",
Expand All @@ -250,6 +257,7 @@ py_test(
name = "resolver_test",
size = "medium",
srcs = ["resolver_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":resolver",
Expand All @@ -274,6 +282,7 @@ py_test(
data = [
"testdata/half_plus_two_v1.tar.gz",
],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":tensorflow_hub",
Expand All @@ -299,6 +308,7 @@ py_test(
name = "saved_model_lib_test",
size = "small",
srcs = ["saved_model_lib_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":saved_model_lib",
Expand Down Expand Up @@ -330,6 +340,7 @@ py_test(
name = "tensor_info_test",
size = "small",
srcs = ["tensor_info_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":tensor_info",
Expand All @@ -355,6 +366,7 @@ py_library(
py_test(
name = "registry_test",
srcs = ["registry_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":registry",
Expand All @@ -374,6 +386,7 @@ py_library(
py_test(
name = "keras_layer_test",
srcs = ["keras_layer_test.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":tensorflow_hub",
Expand Down

0 comments on commit 39d2b2a

Please sign in to comment.