From 4a44f7d442ff850563ae7b40ce20f9b5ffecd06d Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Tue, 19 Mar 2024 22:22:58 -0700 Subject: [PATCH] Disable Stable Diffusion XL test. It's still broken when running on BuildKite, will figure out why tomorrow. Disable it in the meantime. PiperOrigin-RevId: 617398037 --- test/gpu/imagegen_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/gpu/imagegen_test.go b/test/gpu/imagegen_test.go index ab7995bc8..d062987ed 100644 --- a/test/gpu/imagegen_test.go +++ b/test/gpu/imagegen_test.go @@ -25,6 +25,7 @@ import ( // TestStableDiffusionXL generates an image with Stable Diffusion XL. func TestStableDiffusionXL(t *testing.T) { + t.Skip("TODO(b/306706609): Fix this test.") ctx := context.Background() sdxl := stablediffusion.NewDockerXL(t) generateCtx, generateCancel := context.WithTimeout(ctx, 15*time.Minute)