Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
_get_travis_status does test for 'finished' now
  • Loading branch information
gfldex committed Jan 11, 2016
1 parent 49b29cc commit 15d1a08
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/ModulesPerl6/DbBuilder/Dist/PostProcessor/TravisCI.pm
Expand Up @@ -52,6 +52,7 @@ sub _get_travis_status {
return $state if $state =~ /cancel|pend/;
return 'error' if $state =~ /error/;
return 'failing' if $state =~ /fail/;
return 'passing' if $state =~ /finished/;
return 'passing' if $state =~ /pass/;
return 'unknown';
}
Expand Down

0 comments on commit 15d1a08

Please sign in to comment.