Make test run output a bit more clear by collapsing 3 separate runs into just 1

This commit is contained in:
Gonzalo Rodriguez 2018-06-26 09:50:40 -03:00
parent 21561bb2f5
commit eafc13f44a
No known key found for this signature in database
GPG key ID: 5DB8B81B049B8AB1

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]