Temporarily disable two unit tests while fixing a problem with multiprocessor setup.

PiperOrigin-RevId: 590782049
This commit is contained in:
Steve Chien 2023-12-13 19:04:32 -08:00 committed by A. Unique TensorFlower
parent fbe5879023
commit 81a4fd82f7
2 changed files with 6 additions and 0 deletions

View file

@ -36,6 +36,9 @@ py_test(
py_test(
name = "dp_keras_model_distributed_test",
srcs = ["dp_keras_model_distributed_test.py"],
tags = [
"manual",
],
deps = [
":dp_keras_model",
"//tensorflow_privacy/privacy/fast_gradient_clipping:layer_registry",

View file

@ -113,6 +113,9 @@ py_test(
srcs = ["dp_optimizer_keras_sparse_distributed_test.py"],
python_version = "PY3",
srcs_version = "PY3",
tags = [
"manual",
],
deps = [":dp_optimizer_keras_sparse"],
)