Skip to content

Commit

Permalink
fix travis postgres config
Browse files Browse the repository at this point in the history
  • Loading branch information
docteurklein committed Mar 27, 2012
1 parent 640a1b9 commit fae3de0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -6,10 +6,10 @@ php:
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install
- apt-get install -y postgresql-contrib-8.4
- psql -c 'create database orm_behaviors_test;' -U postgres
- psql -c 'create extension cube;' -U postgres orm_behaviors_test
- psql -c 'create extension earthdistance;' -U postgres orm_behaviors_test
- sudo apt-get install -y postgresql-contrib-8.4
- psql -U postgres -d storage -f /usr/share/postgresql/8.4/contrib/cube.sql
- psql -U postgres -d storage -f /usr/share/postgresql/8.4/contrib/earthdistance.sql
- createdb orm_behaviors_test

script: phpunit

0 comments on commit fae3de0

Please sign in to comment.