summaryrefslogtreecommitdiff
path: root/qa/Rakefile
diff options
context:
space:
mode:
authorSanad Liaquat <sliaquat@gitlab.com>2019-06-18 13:29:30 +0500
committerSanad Liaquat <sliaquat@gitlab.com>2019-06-18 13:29:30 +0500
commitab2571735c894ba87635961f4699fd2e5d32eeec (patch)
tree2195cbcb0eabdaaa6db676c1ee5fee3defc2d63e /qa/Rakefile
parent0a70ba177e4589733659dd5af85402d0a3081026 (diff)
downloadgitlab-ce-ab2571735c894ba87635961f4699fd2e5d32eeec.tar.gz
Add script for MR with many commitsqa-perf-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"