Commit 1fb93773 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'fix-flaky-code-quality-auto-devops-qa' into 'master'

Disable code_quality check in auto devops QA integration test

See merge request gitlab-org/gitlab-ce!21304
parents b289075d feca142f
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment