10000 test(examples): Use a hosted database for example testing by kyleconroy · Pull Request #2749 · sqlc-dev/sqlc · GitHub
[go: up one dir, main page]

Skip to content

test(examples): Use a hosted database for example testing #2749

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 20, 2023
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
0