diff options
-rw-r--r-- | lib/tasks/travis.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/travis.rake b/lib/tasks/travis.rake index c0b63194a77..58767e10611 100644 --- a/lib/tasks/travis.rake +++ b/lib/tasks/travis.rake @@ -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 |