From eb146e9abe08c3991b5a54237c24d15312c70ee8 Mon Sep 17 00:00:00 2001 From: Mayra Cabrera Date: Wed, 12 Sep 2018 15:25:20 -0500 Subject: [PATCH] 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 --- .../auto_devops/create_project_with_auto_devops_spec.rb | 1 + 1 file changed, 1 insertion(+) 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