From eafc13f44ae0d7fd107987f418ca9bc5bfaece85 Mon Sep 17 00:00:00 2001 From: Gonzalo Rodriguez Date: Tue, 26 Jun 2018 09:50:40 -0300 Subject: [PATCH] Make test run output a bit more clear by collapsing 3 separate runs into just 1 --- Rakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 961943b..182e118 100644 --- a/Rakefile +++ b/Rakefile @@ -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]