diff options
author | Sanad Liaquat <sliaquat@gitlab.com> | 2018-12-10 13:30:55 +0000 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2018-12-17 16:11:38 +0100 |
commit | c60764afc322ba313bffb6c0866fc68725d7c2d9 (patch) | |
tree | d8f29bf9d8438fb5c98d5746e81b381f9020e6e7 /qa | |
parent | 8ee96a9a2fa29d0aa748997fbaeb166a1ecc849c (diff) | |
download | gitlab-ce-c60764afc322ba313bffb6c0866fc68725d7c2d9.tar.gz |
Merge branch 'qa-reuse-chrome-profile' into 'master'
Add QA option to use the same Chrome profile
Closes #52255
See merge request gitlab-org/gitlab-ce!23576
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/runtime/browser.rb | 7 | ||||
-rw-r--r-- | qa/qa/runtime/env.rb | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/qa/qa/runtime/browser.rb b/qa/qa/runtime/browser.rb index 7fd2ba25527..b706d6565d2 100644 --- a/qa/qa/runtime/browser.rb +++ b/qa/qa/runtime/browser.rb @@ -70,6 +70,13 @@ module QA options.add_argument("disable-gpu") end + # Use the same profile on QA runs if CHROME_REUSE_PROFILE is true. + # Useful to speed up local QA. + if QA::Runtime::Env.reuse_chrome_profile? + qa_profile_dir = ::File.expand_path('../../tmp/qa-profile', __dir__) + options.add_argument("user-data-dir=#{qa_profile_dir}") + end + # Disable /dev/shm use in CI. See https://gitlab.com/gitlab-org/gitlab-ee/issues/4252 options.add_argument("disable-dev-shm-usage") if QA::Runtime::Env.running_in_ci? diff --git a/qa/qa/runtime/env.rb b/qa/qa/runtime/env.rb index 3bc2b44ccd8..dae5aa3f794 100644 --- a/qa/qa/runtime/env.rb +++ b/qa/qa/runtime/env.rb @@ -30,6 +30,11 @@ module QA enabled?(ENV['CHROME_HEADLESS']) end + # set to 'true' to have Chrome use a fixed profile directory + def reuse_chrome_profile? + enabled?(ENV['CHROME_REUSE_PROFILE'], default: false) + end + def accept_insecure_certs? enabled?(ENV['ACCEPT_INSECURE_CERTS']) end |