ikuseiGmbH/Goldencobra

View on GitHub
lib/tasks/travis.rake

Summary

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