diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-02-05 09:15:55 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-02-05 09:15:55 +0000 |
commit | eb4c4ae6212b8f305af700a18d60548ef17e047c (patch) | |
tree | 852f158fbbc8a93c5d719fff2f47fe58c492d4c2 /qa | |
parent | 41e9bac6ed3ae66ea0b34b6ea60b10a58eae4fbd (diff) | |
download | gitlab-ce-eb4c4ae6212b8f305af700a18d60548ef17e047c.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/specs/features/browser_ui/4_verify/pipeline/run_pipeline_with_manual_jobs_spec.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qa/qa/specs/features/browser_ui/4_verify/pipeline/run_pipeline_with_manual_jobs_spec.rb b/qa/qa/specs/features/browser_ui/4_verify/pipeline/run_pipeline_with_manual_jobs_spec.rb index 11caac90299..a52619a8b6e 100644 --- a/qa/qa/specs/features/browser_ui/4_verify/pipeline/run_pipeline_with_manual_jobs_spec.rb +++ b/qa/qa/specs/features/browser_ui/4_verify/pipeline/run_pipeline_with_manual_jobs_spec.rb @@ -66,14 +66,15 @@ module QA end after do - [runner, project].each(&:remove_via_api!) + runner&.remove_via_api! + project&.remove_via_api! end it 'does not leave any job in skipped state', testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/349158' do Page::Project::Pipeline::Show.perform do |show| show.click_job_action('Prep') # Trigger pipeline manually - show.wait_until(max_duration: 120, sleep_interval: 2, reload: false) do + show.wait_until(max_duration: 300, sleep_interval: 2, reload: false) do project.pipelines.last[:status] == 'success' end |