Skip to content

Commit

Permalink
use progress formatter on travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
inukshuk committed Aug 20, 2013
1 parent e4a784a commit 4adc126
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ end
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.rspec_opts = %w{ --require spec_helper.rb --format Fuubar --color }
if ENV['TRAVIS']
spec.rspec_opts = %w{ --require spec_helper.rb --format progress --color }
else
spec.rspec_opts = %w{ --require spec_helper.rb --format Fuubar --color }
end
end

task :default => [:spec]

0 comments on commit 4adc126

Please sign in to comment.