Skip to content

Commit

Permalink
limit db migration tests to sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-fischer committed Oct 4, 2024
1 parent aedcb16 commit f2e57d5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions management/server/sql_store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,9 @@ func TestMigrate(t *testing.T) {
t.Skip("skip CI tests on darwin and windows")
}

// TODO: figure out why this fails on postgres
t.Setenv("NETBIRD_STORE_ENGINE", string(SqliteStoreEngine))

store, cleanUp, err := NewTestStoreFromSqlite(context.Background(), "", t.TempDir())
t.Cleanup(cleanUp)
assert.NoError(t, err)
Expand Down

0 comments on commit f2e57d5

Please sign in to comment.