diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-23 16:52:40 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-23 16:52:40 +0200 |
commit | b8f12d1917d2befe17cf8e8f47fb70a1bb6a99ff (patch) | |
tree | eea9e487f1679306149023e2c448fd3488d8d619 /lib/tasks/test.rake | |
parent | 12e09986350344ee05bd87dc70014510dfff68c3 (diff) | |
download | gitlab-ce-b8f12d1917d2befe17cf8e8f47fb70a1bb6a99ff.tar.gz |
Replace GITLAB with GitLab in rake task descriptions
Diffstat (limited to 'lib/tasks/test.rake')
-rw-r--r-- | lib/tasks/test.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake index a39d9649876..b9f9c72c91f 100644 --- a/lib/tasks/test.rake +++ b/lib/tasks/test.rake @@ -1,6 +1,6 @@ Rake::Task["test"].clear -desc "GITLAB | Run all tests" +desc "GitLab | Run all tests" task :test do Rake::Task["gitlab:test"].invoke end @@ -8,6 +8,6 @@ end unless Rails.env.production? require 'coveralls/rake/task' Coveralls::RakeTask.new - desc "GITLAB | Run all tests on CI with simplecov" + desc "GitLab | Run all tests on CI with simplecov" task :test_ci => [:rubocop, :brakeman, 'jasmine:ci', :spinach, :spec, 'coveralls:push'] end |