jeroenrinzema / psql-wire

PostgreSQL server wire protocol. Build your own server and start serving connections.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable the jackc/pgx error code tests

github-actions opened this issue · comments

We have disabled the pgx tests for now until jackc/pgx#1466 has been resolved.

Line: 41

psql-wire//error_test.go

Lines 38 to 48 in 1676ea5

})
t.Run("jackc/pgx", func(t *testing.T) {
// TODO: Enable the jackc/pgx error code tests
// We have disabled the pgx tests for now until https://github.com/jackc/pgx/discussions/1466 has been resolved.
t.Skip()
ctx := context.Background()
connstr := fmt.Sprintf("postgres://%s:%d", address.IP, address.Port)
conn, err := pgx.Connect(ctx, connstr)
assert.NoError(t, err)