diff --git a/coderd/idpsync/group_test.go b/coderd/idpsync/group_test.go index 58024ed2f6f8f..7b0fb70ae8f68 100644 --- a/coderd/idpsync/group_test.go +++ b/coderd/idpsync/group_test.go @@ -69,11 +69,6 @@ func TestParseGroupClaims(t *testing.T) { func TestGroupSyncTable(t *testing.T) { t.Parallel() - // Last checked, takes 30s with postgres on a fast machine. - if dbtestutil.WillUsePostgres() { - t.Skip("Skipping test because it populates a lot of db entries, which is slow on postgres.") - } - userClaims := jwt.MapClaims{ "groups": []string{ "foo", "bar", "baz", @@ -379,10 +374,6 @@ func TestGroupSyncTable(t *testing.T) { func TestSyncDisabled(t *testing.T) { t.Parallel() - if dbtestutil.WillUsePostgres() { - t.Skip("Skipping test because it populates a lot of db entries, which is slow on postgres.") - } - db, _ := dbtestutil.NewDB(t) manager := runtimeconfig.NewManager() s := idpsync.NewAGPLSync(slogtest.Make(t, &slogtest.Options{}), diff --git a/coderd/idpsync/role_test.go b/coderd/idpsync/role_test.go index f1cebc1884453..f07d97a2b0f31 100644 --- a/coderd/idpsync/role_test.go +++ b/coderd/idpsync/role_test.go @@ -27,10 +27,6 @@ import ( func TestRoleSyncTable(t *testing.T) { t.Parallel() - if dbtestutil.WillUsePostgres() { - t.Skip("Skipping test because it populates a lot of db entries, which is slow on postgres.") - } - userClaims := jwt.MapClaims{ "roles": []string{ "foo", "bar", "baz",