Skip to content

Commit

Permalink
Don't run rubocop in parallel with the Rake task (Shopify#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebarrie authored and lawrencewong committed Apr 29, 2023
1 parent 436eade commit 55b6e20
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Rakefile
Expand Up @@ -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")
Expand Down

0 comments on commit 55b6e20

Please sign in to comment.