a7e0ca9e83
Present in the large majority of files of each respective type.
14 lines
290 B
Ruby
14 lines
290 B
Ruby
namespace :gitlab do
|
|
desc "GITLAB | Run all tests"
|
|
task :test do
|
|
cmds = [
|
|
%W(rake spinach),
|
|
%W(rake spec),
|
|
%W(rake jasmine:ci)
|
|
]
|
|
|
|
cmds.each do |cmd|
|
|
system({'RAILS_ENV' => 'test', 'force' => 'yes'}, *cmd) or raise("#{cmd} failed!")
|
|
end
|
|
end
|
|
end
|