diff options
author | Mayra Cabrera <mcabrera@gitlab.com> | 2018-09-12 15:25:20 -0500 |
---|---|---|
committer | Mayra Cabrera <mcabrera@gitlab.com> | 2018-09-13 08:48:50 -0500 |
commit | eb146e9abe08c3991b5a54237c24d15312c70ee8 (patch) | |
tree | 4e6c59d7b648494977c3a2adf8b261904fac625e /qa | |
parent | 8f5c95314914ce687501200e0dc0645ab10247ae (diff) | |
download | gitlab-ce-eb146e9abe08c3991b5a54237c24d15312c70ee8.tar.gz |
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.rb | 1 |
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 |