diff options
author | Dylan Griffith <dyl.griffith@gmail.com> | 2018-08-14 09:09:49 +0100 |
---|---|---|
committer | Dylan Griffith <dyl.griffith@gmail.com> | 2018-08-14 09:09:49 +0100 |
commit | 3d93a77220d3dc8c6c5aa882a769496d13cc2455 (patch) | |
tree | 72a423944abe0c310ae8d5a57726ad40972d7029 /qa | |
parent | d94fb81497f770b6ebb2e1b7fe1c5413eba5d481 (diff) | |
download | gitlab-ce-3d93a77220d3dc8c6c5aa882a769496d13cc2455.tar.gz |
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.
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/specs/features/project/auto_devops_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/specs/features/project/auto_devops_spec.rb b/qa/qa/specs/features/project/auto_devops_spec.rb index bc713b46d81..c2c3bef98e4 100644 --- a/qa/qa/specs/features/project/auto_devops_spec.rb +++ b/qa/qa/specs/features/project/auto_devops_spec.rb @@ -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 |