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:
parent
fe44611fab
commit
9be6baf477
@ -30,6 +30,7 @@ py_test(
|
|||||||
tags = [
|
tags = [
|
||||||
"no_pip",
|
"no_pip",
|
||||||
"no_rocm",
|
"no_rocm",
|
||||||
|
"no_windows", # Bugs due to some paths.
|
||||||
],
|
],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow:tensorflow_py",
|
"//tensorflow:tensorflow_py",
|
||||||
@ -48,7 +49,10 @@ py_test(
|
|||||||
srcs = ["deprecation_test.py"],
|
srcs = ["deprecation_test.py"],
|
||||||
python_version = "PY3",
|
python_version = "PY3",
|
||||||
srcs_version = "PY2AND3",
|
srcs_version = "PY2AND3",
|
||||||
tags = ["v1only"],
|
tags = [
|
||||||
|
"no_windows", # Failing due to missing API symbols.
|
||||||
|
"v1only",
|
||||||
|
],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow:tensorflow_py",
|
"//tensorflow:tensorflow_py",
|
||||||
"//tensorflow/python:client_testlib",
|
"//tensorflow/python:client_testlib",
|
||||||
@ -62,6 +66,9 @@ py_test(
|
|||||||
srcs = ["module_test.py"],
|
srcs = ["module_test.py"],
|
||||||
python_version = "PY3",
|
python_version = "PY3",
|
||||||
srcs_version = "PY2AND3",
|
srcs_version = "PY2AND3",
|
||||||
|
tags = [
|
||||||
|
"no_windows", # Failing due to missing API symbols.
|
||||||
|
],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow:tensorflow_py",
|
"//tensorflow:tensorflow_py",
|
||||||
"//tensorflow/python:client_testlib",
|
"//tensorflow/python:client_testlib",
|
||||||
|
@ -164,7 +164,10 @@ py_test(
|
|||||||
srcs = ["tf_upgrade_v2_test.py"],
|
srcs = ["tf_upgrade_v2_test.py"],
|
||||||
python_version = "PY3",
|
python_version = "PY3",
|
||||||
srcs_version = "PY2AND3",
|
srcs_version = "PY2AND3",
|
||||||
tags = ["v1only"],
|
tags = [
|
||||||
|
"no_windows",
|
||||||
|
"v1only",
|
||||||
|
],
|
||||||
deps = [
|
deps = [
|
||||||
":tf_upgrade_v2_lib",
|
":tf_upgrade_v2_lib",
|
||||||
"//tensorflow:tensorflow_py",
|
"//tensorflow:tensorflow_py",
|
||||||
@ -249,7 +252,10 @@ py_test(
|
|||||||
srcs = ["testdata/test_file_v1_12.py"],
|
srcs = ["testdata/test_file_v1_12.py"],
|
||||||
python_version = "PY3",
|
python_version = "PY3",
|
||||||
srcs_version = "PY2AND3",
|
srcs_version = "PY2AND3",
|
||||||
tags = ["v1only"],
|
tags = [
|
||||||
|
"no_windows",
|
||||||
|
"v1only",
|
||||||
|
],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow:tensorflow_py",
|
"//tensorflow:tensorflow_py",
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user