Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanad Liaquat <sliaquat@gitlab.com>2019-06-18 11:29:30 +0300
committerSanad Liaquat <sliaquat@gitlab.com>2019-06-18 11:29:30 +0300
commitab2571735c894ba87635961f4699fd2e5d32eeec (patch)
tree2195cbcb0eabdaaa6db676c1ee5fee3defc2d63e /qa/Rakefile
parent0a70ba177e4589733659dd5af85402d0a3081026 (diff)
Add script for MR with many commits
Also does a lot of cleanup and refactoring
Diffstat (limited to 'qa/Rakefile')
-rw-r--r--qa/Rakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/qa/Rakefile b/qa/Rakefile
index 7ac018f7286..7ba8a6d68ba 100644
--- a/qa/Rakefile
+++ b/qa/Rakefile
@@ -13,8 +13,9 @@ task :delete_subgroups do
end
desc "Generate Performance Testdata"
-task :generate_perf_testdata do
- QA::Tools::GeneratePerfTestdata.new.run
+task :generate_perf_testdata, :type do |t, args|
+ args.with_defaults(type: :all)
+ QA::Tools::GeneratePerfTestdata.new.method(args[:type]).call
end
desc "Run artillery load tests"