Skip to content

Commit

Permalink
Run composer before database setup
Browse files Browse the repository at this point in the history
  • Loading branch information
apuyou committed Jul 7, 2013
1 parent b9721bd commit 09929b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ php:
before_script:
- mkdir logs
- chmod 777 logs
- curl -s https://getcomposer.org/installer | php
- php composer.phar install --dev --prefer-source --no-interaction
- mysql -e 'create database buckutt_test;'
- php db.php migrations:migrate --write-sql
- mysql -u root buckutt_test < doctrine_migration_*.sql
- curl -s https://getcomposer.org/installer | php
- php composer.phar install --dev --prefer-source --no-interaction
- cd tests/
- mkdir logs
- chmod 777 logs
Expand Down

0 comments on commit 09929b6

Please sign in to comment.