Commit 2f4d7726 authored by Walmyr Lima e Silva Filho's avatar Walmyr Lima e Silva Filho

Merge branch 'ml-qa-fix-merge-trains-test' into 'master'

Wait longer for pipelines and merge train

Closes #33404

See merge request gitlab-org/gitlab!19737
parents 09a2df90 20e4c8a5
...@@ -64,7 +64,11 @@ module QA ...@@ -64,7 +64,11 @@ module QA
end.visit! end.visit!
Page::MergeRequest::Show.perform do |show| Page::MergeRequest::Show.perform do |show|
expect(show).to have_pipeline_status(/Merged result pipeline #\d+ passed/) pipeline_passed = Support::Retrier.retry_until(max_attempts: 5, sleep_interval: 5) do
show.has_pipeline_status?(/Merged result pipeline #\d+ passed/)
end
expect(pipeline_passed).to be_truthy, "Expected the merged result pipeline to pass."
# The default option is to merge via merge train, # The default option is to merge via merge train,
# but that will be covered by another test # but that will be covered by another test
...@@ -96,12 +100,16 @@ module QA ...@@ -96,12 +100,16 @@ module QA
end.visit! end.visit!
Page::MergeRequest::Show.perform do |show| Page::MergeRequest::Show.perform do |show|
expect(show).to have_pipeline_status(/Merged result pipeline #\d+ passed/) pipeline_passed = Support::Retrier.retry_until(max_attempts: 5, sleep_interval: 5) do
show.has_pipeline_status?(/Merged result pipeline #\d+ passed/)
end
expect(pipeline_passed).to be_truthy, "Expected the merged result pipeline to pass."
show.merge_via_merge_train show.merge_via_merge_train
end end
expect(page).to have_content('Added to the merge train') expect(page).to have_content('Added to the merge train', wait: 60)
expect(page).to have_content('The changes will be merged into master') expect(page).to have_content('The changes will be merged into master')
# It's faster to refresh the page than to wait for the UI to # It's faster to refresh the page than to wait for the UI to
......
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