|
|
@ -71,7 +71,8 @@ class JenkinsModule:
|
|
|
|
# The goal of this is to identify problematic jobs, and jobs with
|
|
|
|
# The goal of this is to identify problematic jobs, and jobs with
|
|
|
|
# no existing builds aren't necessarily problematic (yet)
|
|
|
|
# no existing builds aren't necessarily problematic (yet)
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
status = val.get_last_build().get_status()
|
|
|
|
status = val.get_last_build().get_status() or \
|
|
|
|
|
|
|
|
val.get_last_completed_build().get_status()
|
|
|
|
except NoBuildData:
|
|
|
|
except NoBuildData:
|
|
|
|
status = "SUCCESS"
|
|
|
|
status = "SUCCESS"
|
|
|
|
|
|
|
|
|
|
|
|