Commit aa4d25e2e0f58de496b49cb0256565112fb46633

Authored by Rafael Manzo
1 parent bf753cdd

Fixing travis build

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
.travis.yml
... ... @@ -4,7 +4,7 @@ rvm:
4 4  
5 5 before_script:
6 6 - "cp config/database.yml.sample config/database.yml"
7   - - "rake db:migrate RAILS_ENV=test"
  7 + - "bundle exec rake db:migrate RAILS_ENV=test"
8 8 - wget https://gist.github.com/rafamanzo/6179925/raw/77653bd6229e99d5251180a4488e2fa54d0cd4ac/db_bootstrap.sql
9 9 - wget https://gist.github.com/rafamanzo/6179925/raw/a38c3b33af3b1784eece46450cca65503337e4b5/install.sh
10 10 - chmod +x install.sh
... ... @@ -13,10 +13,10 @@ before_script:
13 13  
14 14 script:
15 15 - sudo service tomcat6 stop
16   - - rake spec
17   - - rake konacha:run
  16 + - bundle exec rake spec
  17 + - bundle exec rake konacha:run
18 18 - sudo service tomcat6 start
19   - - rake cucumber
  19 + - bundle exec rake cucumber
20 20  
21 21 notifications:
22 22 email:
... ...