Lets change how cucumber run on travis

This commit is contained in:
randx 2012-06-17 18:40:00 +03:00
parent cd3f55a310
commit 60db88ad34

View file

@ -1,5 +1,5 @@
task :travis do
["bundle exec rake cucumber", "bundle exec rspec spec"].each do |cmd|
["cucumber", "rspec spec"].each do |cmd|
puts "Starting to run #{cmd}..."
system("export DISPLAY=:99.0 && bundle exec #{cmd}")
raise "#{cmd} failed!" unless $?.exitstatus == 0