Showing content from https://gitlab.com/gitlab-org/gitlab-qa/-/merge_requests/255.patch below:
From e33195ead674875d8d925e393bb76002855c5071 Mon Sep 17 00:00:00 2001 From: Mark Lapierre Date: Fri, 5 Jul 2019 12:47:56 +1000 Subject: [PATCH 1/2] Enable --parallel for all jobs --- .gitlab-ci.yml | 108 ++++++++++++++++++++++++------------------------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d6630477..19e8f9b02 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -103,7 +103,7 @@ ee:sanity-framework: ce:instance: script: - - exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -114,7 +114,7 @@ ce:instance: ce:instance-quarantine: script: - - exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -124,7 +124,7 @@ ce:instance-quarantine: ee:instance: script: - - exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -135,7 +135,7 @@ ee:instance: ee:instance-quarantine: script: - - exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -145,7 +145,7 @@ ee:instance-quarantine: ce:docker: script: - - exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} -- --tag docker $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} --parallel -- --tag docker $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -154,7 +154,7 @@ ce:docker: ee:docker: script: - - exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} -- --tag docker $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} --parallel -- --tag docker $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -163,7 +163,7 @@ ee:docker: ce:relative_url: script: - - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -174,7 +174,7 @@ ce:relative_url: ce:relative_url-quarantine: script: - - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=CE} -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=CE} --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -184,7 +184,7 @@ ce:relative_url-quarantine: ee:relative_url: script: - - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -195,7 +195,7 @@ ee:relative_url: ee:relative_url-quarantine: script: - - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=EE} -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=EE} --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -219,7 +219,7 @@ ee:image: ce:update: script: - - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=CE} ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=CE} ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -230,7 +230,7 @@ ce:update: ce:update-quarantine: script: - - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=CE} ${RELEASE:=CE} -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=CE} ${RELEASE:=CE} --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -240,7 +240,7 @@ ce:update-quarantine: ee:update: script: - - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=EE} ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=EE} ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -251,7 +251,7 @@ ee:update: ee:update-quarantine: script: - - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=EE} ${RELEASE:=EE} -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=EE} ${RELEASE:=EE} --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -261,7 +261,7 @@ ee:update-quarantine: ce:upgrade: script: - - exe/gitlab-qa Test::Omnibus::Upgrade CE -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Upgrade CE --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -272,7 +272,7 @@ ce:upgrade: ce:upgrade-quarantine: script: - - exe/gitlab-qa Test::Omnibus::Upgrade CE -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Upgrade CE --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -282,7 +282,7 @@ ce:upgrade-quarantine: ee-previous-to-ce:update: script: - - exe/gitlab-qa Test::Omnibus::Update EE CE -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Update EE CE --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -291,7 +291,7 @@ ee-previous-to-ce:update: ee-previous-to-ce:update-quarantine: script: - - exe/gitlab-qa Test::Omnibus::Update EE CE -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Omnibus::Update EE CE --parallel -- --tag quarantine --tag ~orchestrated $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -301,7 +301,7 @@ ee-previous-to-ce:update-quarantine: ce:mattermost: script: - - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -310,7 +310,7 @@ ce:mattermost: ce:mattermost-quarantine: script: - - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=CE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=CE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -320,7 +320,7 @@ ce:mattermost-quarantine: ee:mattermost: script: - - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -329,7 +329,7 @@ ee:mattermost: ee:mattermost-quarantine: script: - - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -339,7 +339,7 @@ ee:mattermost-quarantine: ee:geo: script: - - exe/gitlab-qa Test::Integration::Geo ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Geo ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -348,7 +348,7 @@ ee:geo: ee:geo-quarantine: script: - - exe/gitlab-qa Test::Integration::Geo ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Geo ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -358,7 +358,7 @@ ee:geo-quarantine: ce:ldap_no_tls: script: - - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -367,7 +367,7 @@ ce:ldap_no_tls: ce:ldap_no_tls-quarantine: script: - - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=CE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=CE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -377,7 +377,7 @@ ce:ldap_no_tls-quarantine: ee:ldap_no_tls: script: - - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -386,7 +386,7 @@ ee:ldap_no_tls: ee:ldap_no_tls-quarantine: script: - - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -396,7 +396,7 @@ ee:ldap_no_tls-quarantine: ce:ldap_tls: script: - - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -405,7 +405,7 @@ ce:ldap_tls: ce:ldap_tls-quarantine: script: - - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=CE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=CE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -415,7 +415,7 @@ ce:ldap_tls-quarantine: ee:ldap_tls: script: - - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -424,7 +424,7 @@ ee:ldap_tls: ee:ldap_tls-quarantine: script: - - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -434,7 +434,7 @@ ee:ldap_tls-quarantine: ee:ldap_no_server: script: - - exe/gitlab-qa Test::Integration::LDAPNoServer ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPNoServer ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -443,7 +443,7 @@ ee:ldap_no_server: ee:ldap_no_server-quarantine: script: - - exe/gitlab-qa Test::Integration::LDAPNoServer ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::LDAPNoServer ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -453,7 +453,7 @@ ee:ldap_no_server-quarantine: ce:instance_saml: script: - - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -462,7 +462,7 @@ ce:instance_saml: ce:instance_saml-quarantine: script: - - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=CE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=CE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -472,7 +472,7 @@ ce:instance_saml-quarantine: ee:instance_saml: script: - - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -481,7 +481,7 @@ ee:instance_saml: ee:instance_saml-quarantine: script: - - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -491,7 +491,7 @@ ee:instance_saml-quarantine: ee:group_saml: script: - - exe/gitlab-qa Test::Integration::GroupSAML ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::GroupSAML ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -500,7 +500,7 @@ ee:group_saml: ee:group_saml-quarantine: script: - - exe/gitlab-qa Test::Integration::GroupSAML ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::GroupSAML ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -510,7 +510,7 @@ ee:group_saml-quarantine: ce:kubernetes: script: - - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -519,7 +519,7 @@ ce:kubernetes: ce:kubernetes-quarantine: script: - - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=CE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=CE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -529,7 +529,7 @@ ce:kubernetes-quarantine: ee:kubernetes: script: - - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -538,7 +538,7 @@ ee:kubernetes: ee:kubernetes-quarantine: script: - - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -548,7 +548,7 @@ ee:kubernetes-quarantine: ce:object_storage: script: - - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -557,7 +557,7 @@ ce:object_storage: ce:object_storage-quarantine: script: - - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=CE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=CE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -567,7 +567,7 @@ ce:object_storage-quarantine: ee:object_storage: script: - - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -576,7 +576,7 @@ ee:object_storage: ee:object_storage-quarantine: script: - - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -586,7 +586,7 @@ ee:object_storage-quarantine: ce:oauth: script: - - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=CE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=CE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -595,7 +595,7 @@ ce:oauth: ce:oauth-quarantine: script: - - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=CE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=CE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -605,7 +605,7 @@ ce:oauth-quarantine: ee:oauth: script: - - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -614,7 +614,7 @@ ee:oauth: ee:oauth-quarantine: script: - - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -624,7 +624,7 @@ ee:oauth-quarantine: ee:elasticsearch: script: - - exe/gitlab-qa Test::Integration::Elasticsearch ${RELEASE:=EE} -- $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Elasticsearch ${RELEASE:=EE} --parallel -- $RSPEC_REPORT_OPTS extends: - .test - .high-capacity @@ -633,7 +633,7 @@ ee:elasticsearch: ee:elasticsearch-quarantine: script: - - exe/gitlab-qa Test::Integration::Elasticsearch ${RELEASE:=EE} -- --tag quarantine $RSPEC_REPORT_OPTS + - exe/gitlab-qa Test::Integration::Elasticsearch ${RELEASE:=EE} --parallel -- --tag quarantine $RSPEC_REPORT_OPTS extends: - .test - .high-capacity -- GitLab From cd4fd545ba939dd664877a046982b0939f77e887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Wed, 9 Oct 2019 17:40:28 +0200 Subject: [PATCH 2/2] Disable Rack::Attack throttling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- lib/gitlab/qa/scenario/test/instance/image.rb | 3 +++ lib/gitlab/qa/scenario/test/instance/relative_url.rb | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/gitlab/qa/scenario/test/instance/image.rb b/lib/gitlab/qa/scenario/test/instance/image.rb index 9aec72083..fdca91be7 100644 --- a/lib/gitlab/qa/scenario/test/instance/image.rb +++ b/lib/gitlab/qa/scenario/test/instance/image.rb @@ -15,6 +15,9 @@ module Gitlab gitlab.release = release gitlab.volumes = @volumes gitlab.network = 'test' + gitlab.omnibus_config = <<~OMNIBUS + gitlab_rails['rack_attack_protected_paths'] = []; + OMNIBUS gitlab.instance do Component::Specs.perform do |specs| diff --git a/lib/gitlab/qa/scenario/test/instance/relative_url.rb b/lib/gitlab/qa/scenario/test/instance/relative_url.rb index 54614fd24..23dbaef0e 100644 --- a/lib/gitlab/qa/scenario/test/instance/relative_url.rb +++ b/lib/gitlab/qa/scenario/test/instance/relative_url.rb @@ -11,7 +11,8 @@ module Gitlab gitlab.relative_path = '/relative' gitlab.omnibus_config = <<~OMNIBUS - external_url '#{gitlab.address}' + external_url '#{gitlab.address}'; + gitlab_rails['rack_attack_protected_paths'] = []; OMNIBUS gitlab.instance do -- GitLab
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4