diff options
author | Dylan Griffith <dyl.griffith@gmail.com> | 2018-06-04 16:36:27 +0200 |
---|---|---|
committer | Dylan Griffith <dyl.griffith@gmail.com> | 2018-06-04 17:21:20 +0200 |
commit | 282c09ed91fac544e1f7e9b9430ef9e2e82e9d29 (patch) | |
tree | 7cb260afb7875e75397e6a5699b59dce7a29c750 /qa | |
parent | 2ae48f1ca910031a77550e1f85492d9786c3069e (diff) | |
download | gitlab-ce-282c09ed91fac544e1f7e9b9430ef9e2e82e9d29.tar.gz |
Do not wait for sast job to succeed in auto devops spec
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/specs/features/project/auto_devops_spec.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qa/qa/specs/features/project/auto_devops_spec.rb b/qa/qa/specs/features/project/auto_devops_spec.rb index 360a6f3552d..4ab4135a11c 100644 --- a/qa/qa/specs/features/project/auto_devops_spec.rb +++ b/qa/qa/specs/features/project/auto_devops_spec.rb @@ -60,9 +60,8 @@ 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('sast', status: :success, wait: 600) expect(pipeline).to have_build('production', status: :success, wait: 600) - expect(pipeline).to have_build('performance', status: :success, wait: 600) + expect(pipeline).to have_build('performance', status: :success, wait: 800) end end end |