diff --git a/Rakefile b/Rakefile index 72236961..dd15c495 100644 --- a/Rakefile +++ b/Rakefile @@ -22,7 +22,9 @@ load("rails/tasks/statistics.rake") require "bundler/gem_tasks" require "rubocop/rake_task" -RuboCop::RakeTask.new +RuboCop::RakeTask.new.tap do |rubocop| + rubocop.options += ["--no-parallel"] +end task(test: "app:test") task("test:system" => "app:test:system")