Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9f9c72c91ff6ce1d5d0a55f58e6f29da53bd917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Rake::Task["test"].clear

desc "GitLab | Run all tests"
task :test do
  Rake::Task["gitlab:test"].invoke
end

unless Rails.env.production?
  require 'coveralls/rake/task'
  Coveralls::RakeTask.new
  desc "GitLab | Run all tests on CI with simplecov"
  task :test_ci => [:rubocop, :brakeman, 'jasmine:ci', :spinach, :spec, 'coveralls:push']
end