Update HISTORY for 1.28.1/1.27.2/1.23.16
[lhc/web/wiklou.git] / Rakefile
1 require 'bundler/setup'
2
3 require 'rubocop/rake_task'
4 RuboCop::RakeTask.new(:rubocop) do |task|
5 # if you use mediawiki-vagrant, rubocop will by default use it's .rubocop.yml
6 # the next line makes it explicit that you want .rubocop.yml from the directory
7 # where `bundle exec rake` is executed
8 task.options = ['-c', '.rubocop.yml']
9 end
10
11 require 'mediawiki_selenium/rake_task'
12 MediawikiSelenium::RakeTask.new(site_tag: false)
13
14 task default: [:test]
15
16 desc 'Run all build/tests commands (CI entry point)'
17 task test: [:rubocop]