Python 3 Migration. //tensorflow/(compiler|contrib|python)

PiperOrigin-RevId: 283882221
Change-Id: I8451df5bc5781efe3ea947afd7df4bd82a798469
This commit is contained in:
Zhenyu Tan 2019-12-04 18:32:25 -08:00 committed by TensorFlower Gardener
parent 5e94ded1de
commit 6f96b26d9d
2 changed files with 1 additions and 8 deletions

View File

@ -26,7 +26,6 @@ py_test(
name = "xla_client_test",
srcs = ["xla_client_test.py"],
main = "xla_client_test.py",
python_version = "PY3",
srcs_version = "PY2AND3",
tags = ["no_oss"], # TODO(phawkins): This test passes, but requires --config=monolithic.
deps = [

View File

@ -110,7 +110,6 @@ tf_py_test(
additional_deps = [
":feature_column_test_main_lib",
],
python_version = "PY3",
tags = [
"no_cuda_on_cpu_tap",
"no_pip",
@ -124,7 +123,6 @@ tf_py_test(
additional_deps = [
":feature_column_test_main_lib",
],
python_version = "PY3",
tags = ["no_pip"],
)
@ -161,7 +159,6 @@ tf_py_test(
name = "feature_column_v2_test",
srcs = ["feature_column_v2_test.py"],
additional_deps = [":feature_column_v2_test_main_lib"],
python_version = "PY3",
shard_count = 5,
tags = [
"no_cuda_on_cpu_tap",
@ -176,7 +173,6 @@ tf_py_test(
additional_deps = [
":feature_column_v2_test_main_lib",
],
python_version = "PY3",
tags = ["no_pip"],
)
@ -239,13 +235,12 @@ tf_py_test(
"//tensorflow/python:sparse_tensor",
"//tensorflow/python:training",
],
python_version = "PY3",
)
py_test(
name = "sequence_feature_column_integration_test",
srcs = ["sequence_feature_column_integration_test.py"],
python_version = "PY3",
python_version = "PY2",
srcs_version = "PY2AND3",
tags = ["no_pip"],
deps = [
@ -268,5 +263,4 @@ tf_py_test(
"//tensorflow/python:client_testlib",
"//tensorflow/python:util",
],
python_version = "PY3",
)