good morning!!!!

Skip to content
Snippets Groups Projects
Commit dbf079ff authored by José Carlos Nieto's avatar José Carlos Nieto
Browse files

Defining an external test server for PostgreSQL.

parent fa0e4421
No related branches found
No related tags found
No related merge requests found
......@@ -48,17 +48,17 @@ import (
const wrapperName = "postgresql"
// Wrapper settings.
const host = "127.0.0.1"
const socket = "/var/run/postgresql/"
const dbname = "upperio_tests"
const username = "upperio"
const password = "upperio"
const (
host = "testserver.local"
dbname = "upperio_tests"
username = "upperio"
password = "upperio"
)
// Global settings for tests.
var settings = db.Settings{
Database: dbname,
//Host: host,
Socket: socket,
Host: host,
User: username,
Password: password,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment