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") }