Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2018-09-12 23:25:20 +0300
committerMayra Cabrera <mcabrera@gitlab.com>2018-09-13 16:48:50 +0300
commiteb146e9abe08c3991b5a54237c24d15312c70ee8 (patch)
tree4e6c59d7b648494977c3a2adf8b261904fac625e /qa
parent8f5c95314914ce687501200e0dc0645ab10247ae (diff)
Prevent ADO failing prematurely
Ensures code_quality job in Auto DevOps pipeline is disabled, as it takes too long and times out the test. Closes https://gitlab.com/gitlab-org/gitlab-qa/issues/323
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb b/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb
index e558049756d..844cc1236c7 100644
--- a/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb
+++ b/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb
@@ -21,6 +21,7 @@ module QA
# Disable code_quality check in Auto DevOps pipeline as it takes
# too long and times out the test
Factory::Resource::SecretVariable.fabricate! do |resource|
+ resource.project = project
resource.key = 'CODE_QUALITY_DISABLED'
resource.value = '1'
end