0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00

Merge pull request #4395 from jaswilli/pg

Add pg as an optional dependency.
This commit is contained in:
Hannah Wolfe 2014-11-08 17:38:35 +00:00
commit 5cbf8dd4d0
2 changed files with 3 additions and 5 deletions

View file

@ -12,9 +12,6 @@ env:
- DB=sqlite3 NODE_ENV=testing
- DB=mysql NODE_ENV=testing-mysql
- DB=pg NODE_ENV=testing-pg
matrix:
allow_failures:
- env: DB=pg NODE_ENV=testing-pg
before_install:
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
- cd ~/casperjs
@ -22,7 +19,7 @@ before_install:
- export PATH=$PATH:`pwd`/bin
- cd -
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_testing'; fi
- if [ $DB == "pg" ]; then npm install pg; psql -c 'create database ghost_testing;' -U postgres; fi
- if [ $DB == "pg" ]; then psql -c 'create database ghost_testing;' -U postgres; fi
before_script:
- phantomjs --version
- casperjs --version

View file

@ -65,7 +65,8 @@
"xml": "0.0.12"
},
"optionalDependencies": {
"mysql": "2.5.2"
"mysql": "2.5.2",
"pg": "3.6.2"
},
"devDependencies": {
"blanket": "~1.1.6",