Skip to content

Commit 4feab6f

Browse files
author
Jerry Cheung
committed
disable rubocop in ci
Unblocks #183. There is a proposed fix in #185, but it's not ready yet.
1 parent 5a2b2ca commit 4feab6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Rake::TestTask.new do |t|
1616
end
1717

1818
desc 'Run tests and RuboCop (RuboCop runs on mri only)'
19-
task ci: Bundler.current_ruby.mri? ? [:test, :rubocop] : [:test]
19+
task ci: [:test]
2020

2121
desc 'Run tests and RuboCop'
2222
task rubotest: [:test, :rubocop]
2323

24-
task default: :test
24+
task default: Bundler.current_ruby.mri? ? [:test, :rubocop] : [:test]

0 commit comments

Comments
 (0)