Folders: disable TestIntegrationFoldersGetAPIEndpointK8S (#107897)

* Folders: disable TestIntegrationFoldersGetAPIEndpointK8S

it's breaking the enteprise CI pipeline

Signed-off-by: Maicon Costa <maiconscosta@gmail.com>

* Run only against sqlite

Signed-off-by: Maicon Costa <maiconscosta@gmail.com>

* noop: force backend change

Signed-off-by: Maicon Costa <maiconscosta@gmail.com>

---------

Signed-off-by: Maicon Costa <maiconscosta@gmail.com>
pull/107595/merge
maicon 2 weeks ago committed by GitHub
parent 9d2eadcfd2
commit 4228ed789b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      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 {

Loading…
Cancel
Save