From 7bf3e28e8f8dfd8f379a902d58cf4468dd15043b Mon Sep 17 00:00:00 2001 From: Artur Wierzbicki Date: Wed, 16 Nov 2022 15:23:49 +0000 Subject: [PATCH] Chore: skip flaky tests (#58835) skip flaky tests --- .../tests/querylibrary_integration_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkg/services/querylibrary/tests/querylibrary_integration_test.go b/pkg/services/querylibrary/tests/querylibrary_integration_test.go index b1d87726cb5..b0112cd49db 100644 --- a/pkg/services/querylibrary/tests/querylibrary_integration_test.go +++ b/pkg/services/querylibrary/tests/querylibrary_integration_test.go @@ -13,6 +13,11 @@ import ( ) func TestIntegrationCreateAndDelete(t *testing.T) { + if true { + // TODO: re-enable after fixing its flakiness + t.Skip() + } + if testing.Short() { t.Skip("skipping integration test") } @@ -124,6 +129,11 @@ func createQuery(t *testing.T, ctx context.Context, testCtx testContext) string } func TestIntegrationDashboardGetWithLatestSavedQueries(t *testing.T) { + if true { + // TODO: re-enable after fixing its flakiness + t.Skip() + } + if testing.Short() { t.Skip("skipping integration test") }