Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: Skip certain tests on PRs
  • Loading branch information
kyleconroy committed Sep 25, 2023
commit bf003f45f84e1404c69f6bac4752b3bb683e6b9d
4 changes: 2 additions & 2 deletions internal/sqltest/hosted/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ func PostgreSQL(t *testing.T, migrations []string) string {

once.Do(func() {
if err := initClient(); err != nil {
t.Fatal(err)
t.Log(err)
}
})

if client == nil {
t.Fatalf("client init failed")
t.Skip("client init failed")
}

var seed []string
Expand Down