fix merge miss
This commit is contained in:
parent
56418e85ac
commit
1ad4efe64e
2 changed files with 5 additions and 1 deletions
|
@ -22,7 +22,7 @@ module Ci
|
|||
has_many :merge_requests, foreign_key: "head_pipeline_id"
|
||||
|
||||
has_many :pending_builds, -> { pending }, foreign_key: :commit_id, class_name: 'Ci::Build'
|
||||
has_many :retryable_builds, -> { latest.failed_or_canceled }, foreign_key: :commit_id, class_name: 'Ci::Build'
|
||||
has_many :retryable_builds, -> { latest.failed_or_canceled.includes(:project) }, foreign_key: :commit_id, class_name: 'Ci::Build'
|
||||
has_many :cancelable_statuses, -> { cancelable }, foreign_key: :commit_id, class_name: 'CommitStatus'
|
||||
has_many :manual_actions, -> { latest.manual_actions.includes(:project) }, foreign_key: :commit_id, class_name: 'Ci::Build'
|
||||
has_many :artifacts, -> { latest.with_artifacts_not_expired.includes(:project) }, foreign_key: :commit_id, class_name: 'Ci::Build'
|
||||
|
|
|
@ -735,6 +735,8 @@ describe Ci::Pipeline do
|
|||
|
||||
context 'on failure and build retry' do
|
||||
before do
|
||||
stub_not_protect_default_branch
|
||||
|
||||
build.drop
|
||||
project.add_developer(user)
|
||||
|
||||
|
@ -1000,6 +1002,8 @@ describe Ci::Pipeline do
|
|||
let(:latest_status) { pipeline.statuses.latest.pluck(:status) }
|
||||
|
||||
before do
|
||||
stub_not_protect_default_branch
|
||||
|
||||
project.add_developer(user)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue