Skip to content

Commit a86a589

Browse files
gunantensorflower-gardener
authored andcommitted
Disable flaky cluster tests in opensource.
PiperOrigin-RevId: 172477381
1 parent 18f89c8 commit a86a589

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

tensorflow/contrib/opt/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ tf_py_test(
145145
"//tensorflow/python:training",
146146
"//tensorflow/python:variables",
147147
],
148+
tags = [
149+
"no_oss", # Flaky due to port collisions
150+
],
148151
)
149152

150153
filegroup(

tensorflow/python/BUILD

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3197,7 +3197,10 @@ cuda_py_test(
31973197
":variables",
31983198
"//third_party/py/numpy",
31993199
],
3200-
tags = ["oss_serial"],
3200+
tags = [
3201+
"no_oss", # Test flaky due to port collisions.
3202+
"oss_serial",
3203+
],
32013204
)
32023205

32033206
tf_py_test(
@@ -3213,6 +3216,7 @@ tf_py_test(
32133216
":variables",
32143217
],
32153218
tags = [
3219+
"no_oss", # Test flaky due to port collisions.
32163220
"notsan", # data race due to b/62910646
32173221
"oss_serial",
32183222
],

tensorflow/python/debug/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,8 +897,8 @@ cuda_py_test(
897897
"//tensorflow/python:variables",
898898
],
899899
tags = [
900+
"no_oss", # Test flaky due to port collisions.
900901
"no_windows",
901-
"nomac", # TODO(cais): Install of futures and grpcio on all macs.
902902
"notsan",
903903
"oss_serial",
904904
],

tensorflow/python/kernel_tests/BUILD

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3152,7 +3152,10 @@ tf_py_test(
31523152
"//tensorflow/python/data/ops:dataset_ops",
31533153
"//tensorflow/python/data/ops:iterator_ops",
31543154
],
3155-
tags = ["no_windows"],
3155+
tags = [
3156+
"no_oss", # Test flaky due to port collisions.
3157+
"no_windows",
3158+
],
31563159
)
31573160

31583161
filegroup(

0 commit comments

Comments
 (0)