2014-03-14 05:06:10 -04:00
|
|
|
Rake::Task["test"].clear
|
|
|
|
|
2015-06-23 10:52:40 -04:00
|
|
|
desc "GitLab | Run all tests"
|
2014-03-14 05:06:10 -04:00
|
|
|
task :test do
|
|
|
|
Rake::Task["gitlab:test"].invoke
|
|
|
|
end
|
2014-09-30 08:54:21 -04:00
|
|
|
|
|
|
|
unless Rails.env.production?
|
2015-06-23 10:52:40 -04:00
|
|
|
desc "GitLab | Run all tests on CI with simplecov"
|
2017-01-09 19:04:04 -05:00
|
|
|
task test_ci: [:rubocop, :brakeman, :karma, :spinach, :spec]
|
2014-09-30 08:54:21 -04:00
|
|
|
end
|