From b8257003438c51f93ef602612f7cff7b4ed5cbd6 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Wed, 17 Jul 2024 11:14:59 -0700 Subject: [PATCH] Chore: Skip flakey search test (#90553) --- pkg/services/queryhistory/queryhistory_search_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/services/queryhistory/queryhistory_search_test.go b/pkg/services/queryhistory/queryhistory_search_test.go index db41107f7cc..2012562d61d 100644 --- a/pkg/services/queryhistory/queryhistory_search_test.go +++ b/pkg/services/queryhistory/queryhistory_search_test.go @@ -264,6 +264,7 @@ func TestIntegrationGetQueriesFromQueryHistory(t *testing.T) { testScenarioWithMixedQueriesInQueryHistory(t, "When users tries to get queries with mixed data source it should return correct queries", func(t *testing.T, sc scenarioContext) { + t.Skip() // This test fails a lot at the moment sc.reqContext.Req.Form.Add("to", strconv.FormatInt(sc.service.now().UnixMilli()-60, 10)) sc.reqContext.Req.Form.Add("from", strconv.FormatInt(sc.service.now().UnixMilli()+60, 10)) sc.reqContext.Req.Form.Add("datasourceUid", testDsUID1)