debian-mirror-gitlab/lib/tasks/test.rake
2017-08-17 22:00:37 +05:30

12 lines
259 B
Ruby

Rake::Task["test"].clear
desc "GitLab | Run all tests"
task :test do
Rake::Task["gitlab:test"].invoke
end
unless Rails.env.production?
desc "GitLab | Run all tests on CI with simplecov"
task test_ci: [:rubocop, :brakeman, :karma, :spinach, :spec]
end