Disable tests that are failing on windows.

These were developed on linux, and running into path and symbol issues on windows.

PiperOrigin-RevId: 289154110
Change-Id: I20c62795769e90c1a90f5e0188db024376e92673
This commit is contained in:
Gunhan Gulsoy 2020-01-10 13:26:57 -08:00 committed by TensorFlower Gardener
parent fe44611fab
commit 9be6baf477
2 changed files with 16 additions and 3 deletions
tensorflow/tools
api/tests
compatibility

View File

@ -30,6 +30,7 @@ py_test(
tags = [
"no_pip",
"no_rocm",
"no_windows", # Bugs due to some paths.
],
deps = [
"//tensorflow:tensorflow_py",
@ -48,7 +49,10 @@ py_test(
srcs = ["deprecation_test.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
tags = ["v1only"],
tags = [
"no_windows", # Failing due to missing API symbols.
"v1only",
],
deps = [
"//tensorflow:tensorflow_py",
"//tensorflow/python:client_testlib",
@ -62,6 +66,9 @@ py_test(
srcs = ["module_test.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
tags = [
"no_windows", # Failing due to missing API symbols.
],
deps = [
"//tensorflow:tensorflow_py",
"//tensorflow/python:client_testlib",

View File

@ -164,7 +164,10 @@ py_test(
srcs = ["tf_upgrade_v2_test.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
tags = ["v1only"],
tags = [
"no_windows",
"v1only",
],
deps = [
":tf_upgrade_v2_lib",
"//tensorflow:tensorflow_py",
@ -249,7 +252,10 @@ py_test(
srcs = ["testdata/test_file_v1_12.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
tags = ["v1only"],
tags = [
"no_windows",
"v1only",
],
deps = [
"//tensorflow:tensorflow_py",
],