Fix flaky auto devops QA test by waiting longer for production

This fixes https://gitlab.com/gitlab-org/quality/nightly/issues/3 because the code_quality job holds up the production job. Waiting longer should reduce the likelihood of this.
This commit is contained in:
Dylan Griffith 2018-08-14 09:09:49 +01:00
parent d94fb81497
commit 3d93a77220
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ module QA
Page::Project::Pipeline::Show.perform do |pipeline|
expect(pipeline).to have_build('build', status: :success, wait: 600)
expect(pipeline).to have_build('test', status: :success, wait: 600)
expect(pipeline).to have_build('production', status: :success, wait: 600)
expect(pipeline).to have_build('production', status: :success, wait: 1200)
end
end
end