diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-02 20:08:23 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-02 20:08:23 -0800 |
commit | 84a5a548a5e1377f34b7989fc546eaedf86c3510 (patch) | |
tree | 3ae050640124a85f0c65f4119facc949e010a159 /lib/tasks/test.rake | |
parent | afb8ecc3d1569520379a2d0613137c46d44a12ce (diff) | |
download | gitlab-ce-84a5a548a5e1377f34b7989fc546eaedf86c3510.tar.gz |
Add rubocop to rake test and rake test_ci
Diffstat (limited to 'lib/tasks/test.rake')
-rw-r--r-- | lib/tasks/test.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake index 583f4a876da..3ea9290a814 100644 --- a/lib/tasks/test.rake +++ b/lib/tasks/test.rake @@ -9,5 +9,5 @@ unless Rails.env.production? require 'coveralls/rake/task' Coveralls::RakeTask.new desc "GITLAB | Run all tests on CI with simplecov" - task :test_ci => [:spinach, :spec, 'coveralls:push'] + task :test_ci => [:rubocop, :spinach, :spec, 'coveralls:push'] end |