Skip to content
代码片段 群组 项目
未验证 提交 22c9907c 编辑于 作者: Anastasia McDonald's avatar Anastasia McDonald 提交者: GitLab
浏览文件

Merge branch 'hm-increase-pipeline-timeout-90secs' into 'master'

No related branches found
No related tags found
无相关合并请求
......@@ -44,7 +44,7 @@ module QA
target_new_branch: false)
@project.visit!
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed')
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed', wait: 90)
merge_request.visit!
end
......
......@@ -96,7 +96,7 @@ def run_new_pipeline(report:, pipeline_count:, update: false)
expect { project.pipelines.size }.to eventually_eq(pipeline_count).within(max_duration: 60),
"There are currently #{project.pipelines.size} pipelines in the project instead of #{pipeline_count}"
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed')
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed', wait: 90)
Page::Project::Menu.perform(&:go_to_vulnerability_report)
end
......
......@@ -77,7 +77,7 @@ module QA
create_commit(commit_branch) # commit_branch variable is also used in create_test_mr function
create_test_mr
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed')
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed', wait: 90)
# Check that secret-detection job is NOT present in MR pipeline (non-default branch)
expect(pipeline_has_a_job?).to be_falsey
end
......
......@@ -98,7 +98,7 @@ module QA
# Create MR after creating the scan result policy
merge_request = create_test_mr
Flow::Pipeline.wait_for_latest_pipeline(status: 'passed')
Flow::Pipeline.wait_for_latest_pipeline(status: 'passed', wait: 90)
merge_request.visit!
Page::MergeRequest::Show.perform do |mr|
......
......@@ -76,7 +76,7 @@ module QA
report_path: premade_report_path, severity: "Critical")
merge_request = create_test_mr
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed')
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed', wait: 90)
merge_request.visit!
Page::MergeRequest::Show.perform do |mr|
......
......@@ -280,7 +280,7 @@ def commit_scan_files(fixture_json:, ci_yaml_content:)
end
def wait_for_pipeline_success
Support::Waiter.wait_until(sleep_interval: 10, message: "Check for pipeline success") do
Support::Waiter.wait_until(sleep_interval: 10, message: "Check for pipeline success", max_duration: 90) do
latest_pipeline.status == 'success'
end
end
......
......@@ -56,9 +56,9 @@ module QA
end
before do
Flow::Login.sign_in_unless_signed_in
Flow::Login.sign_in
project.visit!
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed')
Flow::Pipeline.wait_for_latest_pipeline(status: 'Passed', wait: 90)
merge_request.visit!
end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册