debian-mirror-gitlab/lib/tasks/spinach.rake

57 lines
1.4 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
Rake::Task["spinach"].clear if Rake::Task.task_defined?('spinach')
2015-09-11 14:41:01 +05:30
namespace :spinach do
2015-12-23 02:04:40 +05:30
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
2015-09-11 14:41:01 +05:30
desc "GitLab | Spinach | Run project spinach features"
task :project do
cmds = [
%W(rake gitlab:setup),
2015-12-23 02:04:40 +05:30
%W(spinach --tags ~@admin,~@dashboard,~@profile,~@public,~@snippets),
2015-09-11 14:41:01 +05:30
]
run_commands(cmds)
end
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
desc "GitLab | Spinach | Run other spinach features"
task :other do
cmds = [
%W(rake gitlab:setup),
2015-12-23 02:04:40 +05:30
%W(spinach --tags @admin,@dashboard,@profile,@public,@snippets),
2015-09-11 14:41:01 +05:30
]
run_commands(cmds)
end
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
desc "GitLab | Run spinach"
task :spinach do
2014-09-02 18:07:02 +05:30
cmds = [
%W(rake gitlab:setup),
2015-09-11 14:41:01 +05:30
%W(spinach),
2014-09-02 18:07:02 +05:30
]
run_commands(cmds)
end
def run_commands(cmds)
cmds.each do |cmd|
system({'RAILS_ENV' => 'test', 'force' => 'yes'}, *cmd) or raise("#{cmd} failed!")
end
2015-12-23 02:04:40 +05:30
end