Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Do not run Rubocop on each spec run
Browse files Browse the repository at this point in the history
All our travis ci builds fail because rubocop is unhappy with something. The build should not fail because of syntax issues. And we should use HoundCI for this instead.
  • Loading branch information
tvdeyen authored and alepore committed Jul 12, 2018
1 parent c7769a9 commit fe0af38
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ Bundler::GemHelper.install_tasks

begin
require 'spree/testing_support/extension_rake'
require 'rubocop/rake_task'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

RuboCop::RakeTask.new

task default: %i(first_run rubocop spec)
task default: %i(first_run spec)
rescue LoadError
# no rspec available
end
Expand Down

0 comments on commit fe0af38

Please sign in to comment.