From ebee4f4bfdb26ff63b2357c57fbab276dd08c671 Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Thu, 17 Nov 2022 08:13:29 -0800 Subject: [PATCH] Disable test variants that time out in CI. PiperOrigin-RevId: 489214464 --- tests/BUILD | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/BUILD b/tests/BUILD index 049cd8d59..1158a45f3 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -322,6 +322,7 @@ jax_test( name = "lax_numpy_test", srcs = ["lax_numpy_test.py"], backend_tags = { + "cpu": ["noasan"], # Test times out. "tpu": ["noasan"], # Test times out. }, pjrt_c_api_bypass = True, @@ -486,6 +487,7 @@ jax_test( "tpu": [ "cpu:8", "noasan", # Times out. + "nomsan", # Times out. "nodebug", # Times out. "notsan", # Times out. ], @@ -555,6 +557,7 @@ jax_test( backend_tags = { "tpu": [ "noasan", # Times out. + "nmasan", # Times out. "nodebug", # Times out. "notsan", # Times out. ], @@ -639,10 +642,13 @@ jax_test( args = ["--jax_enable_custom_prng=true"], backend_tags = { "cpu": [ - "noasan", + "noasan", # Times out under asan/tsan. "notsan", - ], # Times out under asan/tsan. - "tpu": ["optonly"], + ], + "tpu": [ + "noasan", # Times out under asan/tsan. + "optonly", + ], }, main = "random_test.py", shard_count = {