Merge pull request #366 from grzuy/clearer_test_output

Make test run output a bit more clear by collapsing runs
This commit is contained in:
Gonzalo Rodriguez 2018-06-26 10:56:32 -03:00 committed by GitHub
commit 48af653531
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,8 @@ namespace :test do
end
end
desc 'Run tests'
task :test => %w[test:units test:integration test:acceptance]
Rake::TestTask.new(:test) do |t|
t.pattern = "spec/**/*_spec.rb"
end
task :default => [:rubocop, :test]