Fix pipeline status for transition between stages

This commit is contained in:
Grzegorz Bizon 2017-03-20 19:16:48 +01:00
parent 9bfff603fe
commit f441b95bb3
2 changed files with 9 additions and 0 deletions

View File

@ -31,6 +31,7 @@ module HasStatus
WHEN (#{builds})=(#{created})+(#{skipped})+(#{pending}) THEN 'pending'
WHEN (#{running})+(#{pending})>0 THEN 'running'
WHEN (#{manual})>0 THEN 'manual'
WHEN (#{created})>0 THEN 'running'
ELSE 'failed'
END)"
end

View File

@ -110,6 +110,14 @@ describe HasStatus do
it { is_expected.to eq 'running' }
end
context 'when pipeline is in transition between stages' do
let!(:statuses) do
[create(type, status: :success), create(type, status: :created)]
end
it { is_expected.to eq 'running' }
end
context 'when one status is a blocking manual action' do
let!(:statuses) do
[create(type, status: :failed),