Skip to content

Commit

Permalink
Disable tests that time out in CI.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 532792740
  • Loading branch information
hawkinsp authored and jax authors committed May 17, 2023
1 parent eaf7eb2 commit e6628e2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/BUILD
Expand Up @@ -416,6 +416,9 @@ jax_test(
jax_test(
name = "lax_test",
srcs = ["lax_test.py"],
backend_tags = {
"tpu": ["noasan"], # Times out.
},
shard_count = {
"cpu": 40,
"gpu": 40,
Expand Down Expand Up @@ -629,7 +632,10 @@ jax_test(
name = "random_test",
srcs = ["random_test.py"],
backend_tags = {
"cpu": ["notsan"], # Times out
"cpu": [
"notsan", # Times out
"nomsan", # Times out
],
"tpu": [
"optonly",
"nomsan", # Times out
Expand Down

0 comments on commit e6628e2

Please sign in to comment.