Browse Source

Added missing postgres user to the travis config.

tags/2.0.0-beta
Gevik Babakhani 11 years ago
parent
commit
dbe84acfdd
  1. 4
      .travis.yml

4
.travis.yml

@ -11,6 +11,6 @@ env:
before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS yiitest;'; fi"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'drop database if exists yiitest;'; fi"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database yiitest;'; fi"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -U postgres -c 'drop database if exists yiitest;'; fi"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -U postgres -c 'create database yiitest;'; fi"
script: phpunit
Loading…
Cancel
Save