Skip to content

Commit 8bbe8b9

Browse files
h-jootensorflower-gardener
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 867415982
1 parent 3682e3b commit 8bbe8b9

5 files changed

Lines changed: 19 additions & 0 deletions

File tree

  • spinoffs
    • autobnn/autobnn
    • fun_mc/fun_mc
    • inference_gym/inference_gym/targets
  • tensorflow_probability

spinoffs/autobnn/autobnn/BUILD

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ py_library(
5858
py_test(
5959
name = "bnn_test",
6060
srcs = ["bnn_test.py"],
61+
strict_deps = False,
6162
deps = [
6263
":bnn",
6364
# absl/testing:absltest dep,
@@ -88,6 +89,7 @@ py_test(
8889
timeout = "long",
8990
srcs = ["bnn_tree_test.py"],
9091
shard_count = 3,
92+
strict_deps = False,
9193
deps = [
9294
":bnn_tree",
9395
":kernels",
@@ -117,6 +119,7 @@ py_test(
117119
name = "estimators_test",
118120
timeout = "long",
119121
srcs = ["estimators_test.py"],
122+
strict_deps = False,
120123
# TODO(b/322864412): enable this test in OSS.
121124
tags = ["no-oss-ci"],
122125
deps = [
@@ -146,6 +149,7 @@ py_library(
146149
py_test(
147150
name = "kernels_test",
148151
srcs = ["kernels_test.py"],
152+
strict_deps = False,
149153
deps = [
150154
":kernels",
151155
":util",
@@ -179,6 +183,7 @@ py_library(
179183
py_test(
180184
name = "likelihoods_test",
181185
srcs = ["likelihoods_test.py"],
186+
strict_deps = False,
182187
deps = [
183188
":likelihoods",
184189
# absl/testing:absltest dep,
@@ -206,6 +211,7 @@ py_test(
206211
timeout = "long",
207212
srcs = ["models_test.py"],
208213
shard_count = 3,
214+
strict_deps = False,
209215
deps = [
210216
":likelihoods",
211217
":models",
@@ -239,6 +245,7 @@ py_library(
239245
py_test(
240246
name = "operators_test",
241247
srcs = ["operators_test.py"],
248+
strict_deps = False,
242249
# TODO(b/322864412): enable this test in OSS.
243250
tags = ["no-oss-ci"],
244251
deps = [
@@ -274,6 +281,7 @@ py_library(
274281
py_test(
275282
name = "training_util_test",
276283
srcs = ["training_util_test.py"],
284+
strict_deps = False,
277285
# TODO(b/322864412): enable this test in OSS.
278286
tags = ["no-oss-ci"],
279287
deps = [
@@ -305,6 +313,7 @@ py_library(
305313
py_test(
306314
name = "util_test",
307315
srcs = ["util_test.py"],
316+
strict_deps = False,
308317
deps = [
309318
":kernels",
310319
":util",

spinoffs/fun_mc/fun_mc/BUILD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ py_test(
112112
size = "large",
113113
srcs = ["fun_mc_test.py"],
114114
shard_count = 8,
115+
strict_deps = False,
115116
deps = [
116117
":fun_mc",
117118
":prefab",
@@ -139,6 +140,7 @@ py_test(
139140
name = "malt_test",
140141
srcs = ["malt_test.py"],
141142
shard_count = 2,
143+
strict_deps = False,
142144
deps = [
143145
":fun_mc",
144146
":malt",
@@ -166,6 +168,7 @@ py_test(
166168
name = "prefab_test",
167169
srcs = ["prefab_test.py"],
168170
shard_count = 2,
171+
strict_deps = False,
169172
deps = [
170173
":fun_mc",
171174
":prefab",
@@ -192,6 +195,7 @@ py_test(
192195
name = "sga_hmc_test",
193196
srcs = ["sga_hmc_test.py"],
194197
shard_count = 2,
198+
strict_deps = False,
195199
deps = [
196200
":fun_mc",
197201
":sga_hmc",
@@ -258,6 +262,7 @@ py_test(
258262
name = "util_tfp_test",
259263
srcs = ["util_tfp_test.py"],
260264
shard_count = 2,
265+
strict_deps = False,
261266
deps = [
262267
":fun_mc",
263268
":test_util",

spinoffs/inference_gym/inference_gym/targets/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ py_library(
335335
py_test(
336336
name = "model_test",
337337
srcs = ["model_test.py"],
338+
strict_deps = False,
338339
deps = [
339340
":targets",
340341
# numpy dep,
@@ -578,6 +579,7 @@ py_test(
578579
size = "large",
579580
srcs = ["vectorized_stochastic_volatility_test.py"],
580581
shard_count = 3,
582+
strict_deps = False,
581583
deps = [
582584
":stochastic_volatility",
583585
":vectorized_stochastic_volatility",

tensorflow_probability/python/vi/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ py_test(
103103
size = "small",
104104
srcs = ["mutual_information_test.py"],
105105
shard_count = 5,
106+
strict_deps = False,
106107
deps = [
107108
":mutual_information",
108109
# numpy dep,

tensorflow_probability/substrates/meta/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ py_test(
3030
name = "numpy_integration_test",
3131
size = "small",
3232
srcs = ["numpy_integration_test.py"],
33+
strict_deps = False,
3334
tags = ["tfp_numpy"],
3435
deps = [
3536
# absl/testing:absltest dep,
@@ -40,6 +41,7 @@ py_test(
4041
py_test(
4142
name = "jax_integration_test",
4243
srcs = ["jax_integration_test.py"],
44+
strict_deps = False,
4345
tags = ["tfp_jax"],
4446
deps = [
4547
# absl/testing:absltest dep,

0 commit comments

Comments
 (0)