diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-05 06:08:45 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-05 06:08:45 +0000 |
commit | 34cd22d1a925bd4113e10279bbf98db28adff420 (patch) | |
tree | 4f1f99638abe7ce84ba311325b60d14922cc1847 /qa/Rakefile | |
parent | d0bb8e50e2f4f1943e4d81b9024c9b3efac4275e (diff) | |
download | gitlab-ce-34cd22d1a925bd4113e10279bbf98db28adff420.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa/Rakefile')
-rw-r--r-- | qa/Rakefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qa/Rakefile b/qa/Rakefile index 844d8ff898d..1ecce8fdce9 100644 --- a/qa/Rakefile +++ b/qa/Rakefile @@ -2,6 +2,7 @@ require_relative 'qa/tools/revoke_all_personal_access_tokens' require_relative 'qa/tools/delete_subgroups' require_relative 'qa/tools/generate_perf_testdata' require_relative 'qa/tools/delete_test_ssh_keys' +require_relative 'qa/tools/initialize_gitlab_auth' desc "Revokes all personal access tokens" task :revoke_personal_access_tokens do @@ -13,6 +14,11 @@ task :delete_subgroups do QA::Tools::DeleteSubgroups.new.run end +desc "Initialize GitLab with an access token" +task :initialize_gitlab_auth, [:address] do |t, args| + QA::Tools::InitializeGitLabAuth.new(args).run +end + desc "Generate Performance Testdata" task :generate_perf_testdata, :type do |t, args| args.with_defaults(type: :all) |