56 lines
1.4 KiB
Ruby
56 lines
1.4 KiB
Ruby
Rake::Task["spinach"].clear if Rake::Task.task_defined?('spinach')
|
|
|
|
namespace :spinach do
|
|
namespace :project do
|
|
desc "GitLab | Spinach | Run project commits, issues and merge requests spinach features"
|
|
task :half do
|
|
cmds = [
|
|
%W(rake gitlab:setup),
|
|
%W(spinach --tags @project_commits,@project_issues,@project_merge_requests),
|
|
]
|
|
run_commands(cmds)
|
|
end
|
|
|
|
desc "GitLab | Spinach | Run remaining project spinach features"
|
|
task :rest do
|
|
cmds = [
|
|
%W(rake gitlab:setup),
|
|
%W(spinach --tags ~@admin,~@dashboard,~@profile,~@public,~@snippets,~@project_commits,~@project_issues,~@project_merge_requests),
|
|
]
|
|
run_commands(cmds)
|
|
end
|
|
end
|
|
|
|
desc "GitLab | Spinach | Run project spinach features"
|
|
task :project do
|
|
cmds = [
|
|
%W(rake gitlab:setup),
|
|
%W(spinach --tags ~@admin,~@dashboard,~@profile,~@public,~@snippets),
|
|
]
|
|
run_commands(cmds)
|
|
end
|
|
|
|
desc "GitLab | Spinach | Run other spinach features"
|
|
task :other do
|
|
cmds = [
|
|
%W(rake gitlab:setup),
|
|
%W(spinach --tags @admin,@dashboard,@profile,@public,@snippets),
|
|
]
|
|
run_commands(cmds)
|
|
end
|
|
end
|
|
|
|
desc "GitLab | Run spinach"
|
|
task :spinach do
|
|
cmds = [
|
|
%W(rake gitlab:setup),
|
|
%W(spinach),
|
|
]
|
|
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
|