no dash in database name

This commit is contained in:
brianc 2012-07-11 23:05:39 -05:00
parent 57a2176d48
commit 822e48d41e
2 changed files with 3 additions and 3 deletions

View File

@ -2,5 +2,5 @@ language: node_js
node_js:
- 0.8
before_script:
- psql -c 'create database node-postgres;' -U postgres
- node script/create-test-tables.js pg://postgres@127.0.0.1:5432/node-postgres
- psql -c 'create database postgres;' -U postgres
- node script/create-test-tables.js pg://postgres@127.0.0.1:5432/postgres

View File

@ -13,7 +13,7 @@
"generic-pool" : "1.0.9"
},
"scripts" : {
"test" : "make test-all connectionString=pg://postgres@localhost:5432/node-postgres",
"test" : "make test-all connectionString=pg://postgres@localhost:5432/postgres",
"install" : "node-gyp rebuild || (exit 0)"
},
"engines" : { "node": ">= 0.8.0" }