16 lines
336 B
Ruby
16 lines
336 B
Ruby
namespace :gitlab do
|
|
desc "GitLab | Run all tests"
|
|
task :test do
|
|
cmds = [
|
|
%w(rake brakeman),
|
|
%w(rake rubocop),
|
|
%w(rake spinach),
|
|
%w(rake spec),
|
|
%w(rake karma)
|
|
]
|
|
|
|
cmds.each do |cmd|
|
|
system({ 'RAILS_ENV' => 'test', 'force' => 'yes' }, *cmd) || raise("#{cmd} failed!")
|
|
end
|
|
end
|
|
end
|