From 55b6e205aec2b8bb8754608e6eefd350f1235bd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Barri=C3=A9?= Date: Wed, 25 Aug 2021 08:36:20 -0400 Subject: [PATCH] Don't run rubocop in parallel with the Rake task (#475) --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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")