summaryrefslogtreecommitdiff
path: root/qa/Rakefile
diff options
context:
space:
mode:
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"