diff options
author | Dylan Griffith <dyl.griffith@gmail.com> | 2018-08-20 12:29:19 +0100 |
---|---|---|
committer | Dylan Griffith <dyl.griffith@gmail.com> | 2018-08-20 12:29:19 +0100 |
commit | feca142fe9fe165b850a4007303edc0e145fe612 (patch) | |
tree | 744ff416dba902705de94a451a4b4c17677baaed /qa | |
parent | 0a73c1c5833ac5a86289418e93b5d50aa8e89cbd (diff) | |
download | gitlab-ce-feca142fe9fe165b850a4007303edc0e145fe612.tar.gz |
Disable code_quality check in auto devops QA integration testfix-flaky-code-quality-auto-devops-qa
This test takes too long and leads to flakiness so we disable it for now until somebody can figure out why it takes longer than 20 minutes to finish.
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/specs/features/project/auto_devops_spec.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qa/qa/specs/features/project/auto_devops_spec.rb b/qa/qa/specs/features/project/auto_devops_spec.rb index c2c3bef98e4..b3e4889abc0 100644 --- a/qa/qa/specs/features/project/auto_devops_spec.rb +++ b/qa/qa/specs/features/project/auto_devops_spec.rb @@ -15,6 +15,13 @@ module QA p.description = 'Project with Auto Devops' end + # 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.key = 'CODE_QUALITY_DISABLED' + resource.value = '1' + end + # Create Auto Devops compatible repo Factory::Repository::ProjectPush.fabricate! do |push| push.project = project |