From 450eaba447fe6f02dc2a5ef1001d36a9e1dd7076 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Wed, 14 Jan 2026 18:33:55 +0100 Subject: [PATCH] test: skip integration test in short mode (#116280) --- pkg/storage/unified/testing/storage_backend_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/storage/unified/testing/storage_backend_test.go b/pkg/storage/unified/testing/storage_backend_test.go index 3046967adee..236a6c510dc 100644 --- a/pkg/storage/unified/testing/storage_backend_test.go +++ b/pkg/storage/unified/testing/storage_backend_test.go @@ -8,6 +8,7 @@ import ( "github.com/stretchr/testify/require" "github.com/grafana/grafana/pkg/storage/unified/resource" + "github.com/grafana/grafana/pkg/util/testutil" ) func TestBadgerKVStorageBackend(t *testing.T) { @@ -36,7 +37,9 @@ func TestBadgerKVStorageBackend(t *testing.T) { }) } -func TestSQLKVStorageBackend(t *testing.T) { +func TestIntegrationSQLKVStorageBackend(t *testing.T) { + testutil.SkipIntegrationTestInShortMode(t) + skipTests := map[string]bool{ TestWatchWriteEvents: true, TestList: true,