We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2b2ca commit 4feab6fCopy full SHA for 4feab6f
Rakefile
@@ -16,9 +16,9 @@ Rake::TestTask.new do |t|
16
end
17
18
desc 'Run tests and RuboCop (RuboCop runs on mri only)'
19
-task ci: Bundler.current_ruby.mri? ? [:test, :rubocop] : [:test]
+task ci: [:test]
20
21
desc 'Run tests and RuboCop'
22
task rubotest: [:test, :rubocop]
23
24
-task default: :test
+task default: Bundler.current_ruby.mri? ? [:test, :rubocop] : [:test]
0 commit comments