Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Fix pg_dump tests
  • Loading branch information
kyleconroy committed Sep 20, 2023
commit b28f02e59121c7c024c368068bbce7355b763cc6
4 changes: 4 additions & 0 deletions internal/endtoend/ddl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ func TestValidSchema(t *testing.T) {
t.Run(fmt.Sprintf("endtoend-%s-%d", file, j), func(t *testing.T) {
t.Parallel()

if strings.Contains(file, "pg_dump") {
t.Skip("loading pg_dump not supported")
}

var schema []string
for _, path := range pkg.Schema {
schema = append(schema, filepath.Join(filepath.Dir(file), path))
Expand Down