Skip to content

Commit

Permalink
Added "bundle exec"'s in attempt to fix travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
shageman committed Sep 18, 2012
1 parent 92c6808 commit 439d10a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build_on_travis.sh
@@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
echo "*** Running container app specs" echo "*** Running container app specs"
bundle exec rake db:migrate db:test:prepare bundle exec rake db:migrate db:test:prepare
rspec spec bundle exec rspec spec
result=$? result=$?




Expand All @@ -10,11 +10,11 @@ echo "*** Running teaser engine specs"
source "$HOME/.rvm/scripts/rvm" source "$HOME/.rvm/scripts/rvm"
bundle install bundle install
bundle exec rake db:migrate app:db:test:prepare bundle exec rake db:migrate app:db:test:prepare
rspec spec/models spec/controllers bundle exec rspec spec/models spec/controllers
result+=$? result+=$?


echo "*** Running teaser engine request specs" echo "*** Running teaser engine request specs"
rspec spec/requests bundle exec rspec spec/requests
result+=$? result+=$?


echo "*** Running teaser engine javascript specs" echo "*** Running teaser engine javascript specs"
Expand Down

0 comments on commit 439d10a

Please sign in to comment.