From 4228ed789be6361a61f60bd29bc3e5e362de5d0a Mon Sep 17 00:00:00 2001 From: maicon Date: Wed, 9 Jul 2025 12:44:20 -0300 Subject: [PATCH] Folders: disable TestIntegrationFoldersGetAPIEndpointK8S (#107897) * Folders: disable TestIntegrationFoldersGetAPIEndpointK8S it's breaking the enteprise CI pipeline Signed-off-by: Maicon Costa * Run only against sqlite Signed-off-by: Maicon Costa * noop: force backend change Signed-off-by: Maicon Costa --------- Signed-off-by: Maicon Costa --- pkg/tests/apis/folder/folders_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/tests/apis/folder/folders_test.go b/pkg/tests/apis/folder/folders_test.go index 24459c08963..a885b81d4c0 100644 --- a/pkg/tests/apis/folder/folders_test.go +++ b/pkg/tests/apis/folder/folders_test.go @@ -18,6 +18,7 @@ import ( folders "github.com/grafana/grafana/apps/folder/pkg/apis/folder/v1beta1" "github.com/grafana/grafana/pkg/api/dtos" grafanarest "github.com/grafana/grafana/pkg/apiserver/rest" + "github.com/grafana/grafana/pkg/infra/db" "github.com/grafana/grafana/pkg/services/accesscontrol/resourcepermissions" "github.com/grafana/grafana/pkg/services/dashboards" "github.com/grafana/grafana/pkg/services/featuremgmt" @@ -1129,6 +1130,10 @@ func TestIntegrationFoldersGetAPIEndpointK8S(t *testing.T) { }, }) + if !db.IsTestDbSQLite() { + t.Skip("for now, this test should run only against sqlite") + } + userTest := helper.CreateUser("user", apis.Org1, org.RoleNone, tc.permissions) for _, f := range tc.createFolders {