mirror of
https://github.com/grafana/grafana.git
synced 2026-06-11 09:31:50 -04:00
Admin: Skip reencryption test in sqlite for now (#121282)
This commit is contained in:
parent
e4d9f12be9
commit
f4bb5b4ccc
2 changed files with 10 additions and 0 deletions
|
|
@ -21,6 +21,11 @@ import (
|
|||
func TestIntegration_AdminApiReencrypt_Enterprise(t *testing.T) {
|
||||
testutil.SkipIntegrationTestInShortMode(t)
|
||||
|
||||
// TODO: this test is failing due to DB locks in SQLite.
|
||||
if db.IsTestDbSQLite() {
|
||||
t.Skip("skip flaky in sqlite while we figure out the problem with this test")
|
||||
}
|
||||
|
||||
getSecretsFunctions := map[string]func(*testing.T, *server.TestEnv) map[int]secret{}
|
||||
getSecretsFunctions["settings"] = func(t *testing.T, env *server.TestEnv) map[int]secret {
|
||||
return getSettingSecrets(t, env.SQLStore)
|
||||
|
|
|
|||
|
|
@ -33,6 +33,11 @@ func TestMain(m *testing.M) {
|
|||
func TestIntegration_AdminApiReencrypt(t *testing.T) {
|
||||
testutil.SkipIntegrationTestInShortMode(t)
|
||||
|
||||
// TODO: this test is failing due to DB locks in SQLite.
|
||||
if db.IsTestDbSQLite() {
|
||||
t.Skip("skip flaky in sqlite while we figure out the problem with this test")
|
||||
}
|
||||
|
||||
const (
|
||||
dataSourceTable = "data_source"
|
||||
secretsTable = "secrets"
|
||||
|
|
|
|||
Loading…
Reference in a new issue