Skip to content

Commit 48ddd19

Browse files
authored
chore: Skip certain tests on PRs (#2769)
1 parent 60e8ff8 commit 48ddd19

File tree

1 file changed

+2
-2
lines changed
  • internal/sqltest/hosted

1 file changed

+2
-2
lines changed

internal/sqltest/hosted/db.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ func PostgreSQL(t *testing.T, migrations []string) string {
3535

3636
once.Do(func() {
3737
if err := initClient(); err != nil {
38-
t.Fatal(err)
38+
t.Log(err)
3939
}
4040
})
4141

4242
if client == nil {
43-
t.Fatalf("client init failed")
43+
t.Skip("client init failed")
4444
}
4545

4646
var seed []string

0 commit comments

Comments
 (0)