From 20a64ff33dc60586ce1700cfacd218aa9567ccfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Egelund-M=C3=BCller?= Date: Mon, 30 Mar 2026 14:09:12 +0200 Subject: [PATCH] Skip flaky Gemini completion test --- runtime/drivers/gemini/gemini_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/drivers/gemini/gemini_test.go b/runtime/drivers/gemini/gemini_test.go index 72c59f6f138..851c030ab6d 100644 --- a/runtime/drivers/gemini/gemini_test.go +++ b/runtime/drivers/gemini/gemini_test.go @@ -15,6 +15,9 @@ import ( ) func TestCompletion(t *testing.T) { + // Skip because Gemini is too unreliable (sometimes times out, sometimes answers non-deterministically) and it's not worth fixing right now. + t.Skip() + // Setup a basic metrics view with an "event_time" time dimension, "country" dimension, and "count" and "revenue" measures. rt, instanceID := testruntime.NewInstanceWithOptions(t, testruntime.InstanceOptions{ AIConnector: "gemini",