[management] docker login on management tests (#5323)

This commit is contained in:
Maycon Santos
2026-02-18 16:11:17 +01:00
committed by GitHub
parent 318cf59d66
commit bbca74476e
6 changed files with 66 additions and 52 deletions

View File

@@ -1360,6 +1360,9 @@ func TestSqlStore_GetGroupsByIDs(t *testing.T) {
}
func TestSqlStore_CreateGroup(t *testing.T) {
if os.Getenv("CI") == "true" {
t.Log("Skipping MySQL test on CI")
}
t.Setenv("NETBIRD_STORE_ENGINE", string(types.MysqlStoreEngine))
store, cleanup, err := NewTestStoreFromSQL(context.Background(), "../testdata/extended-store.sql", t.TempDir())
t.Cleanup(cleanup)