Use Ci::Pipeline#latest for finding pipelines

Feedback:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7333#note_18861407
This commit is contained in:
Lin Jen-Shin 2016-11-24 17:00:37 +08:00
parent 6192ea53fa
commit 101cde38cf
2 changed files with 4 additions and 3 deletions

View file

@ -20,7 +20,8 @@ module Gitlab
def status
@project.pipelines
.where(sha: @sha, ref: @ref)
.where(sha: @sha)
.latest(@ref)
.status || 'unknown'
end

View file

@ -69,8 +69,8 @@ describe Gitlab::Badge::Build::Status do
new_build.success!
end
it 'reports the compound status' do
expect(badge.status).to eq 'failed'
it 'does not take outdated pipeline into account' do
expect(badge.status).to eq 'success'
end
end
end