gitlab-org--gitlab-foss/lib/tasks/spinach.rake

41 lines
873 B
Ruby
Raw Normal View History

Rake::Task["spinach"].clear if Rake::Task.task_defined?('spinach')
desc "GITLAB | Run spinach"
task :spinach do
2015-01-30 07:06:43 +00:00
tags = if ENV['SEMAPHORE']
2015-01-30 07:28:38 +00:00
'~@tricky'
2015-01-30 07:06:43 +00:00
else
2015-01-30 07:28:38 +00:00
'~@semaphore'
2015-01-30 07:06:43 +00:00
end
cmds = [
%W(rake gitlab:setup),
2015-01-30 07:06:43 +00:00
%W(spinach --tags #{tags}),
]
run_commands(cmds)
end
desc "GITLAB | Run project spinach features"
task :spinach_project do
cmds = [
%W(rake gitlab:setup),
%W(spinach --tags ~@admin,~@dashboard,~@profile,~@public,~@snippets),
]
run_commands(cmds)
end
desc "GITLAB | Run other spinach features"
task :spinach_other do
cmds = [
%W(rake gitlab:setup),
%W(spinach --tags @admin,@dashboard,@profile,@public,@snippets),
]
run_commands(cmds)
end
def run_commands(cmds)
cmds.each do |cmd|
system({'RAILS_ENV' => 'test', 'force' => 'yes'}, *cmd) or raise("#{cmd} failed!")
end
end