From 0a3f353f6aeed321ceaab2d3c144b5f7ded701c1 Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Sat, 3 Sep 2011 14:24:48 -0700 Subject: [PATCH] Run all specs on travis. Also, add 1.9.2 run. --- .travis.yml | 1 + lib/tasks/cruise.rake | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 60b855967..e3e0268c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ bundler_args: "--without development production" rvm: - ree + - 1.9.2 before_script: - "sudo aptitude -y install firefox" diff --git a/lib/tasks/cruise.rake b/lib/tasks/cruise.rake index 73e5e8bdb..d666ef4f0 100644 --- a/lib/tasks/cruise.rake +++ b/lib/tasks/cruise.rake @@ -21,7 +21,7 @@ namespace :cruise do end task :travis do - system('export DISPLAY=:99.0 && CI=true bundle exec cucumber') + system('export DISPLAY=:99.0 && CI=true bundle exec rake') raise "tests failed!" unless $?.exitstatus == 0 end end