mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
Don't miserably fail if can't fetch result from one CI source
This commit is contained in:
parent
eb0a5bacd1
commit
b37a80a51f
1 changed files with 5 additions and 1 deletions
|
@ -131,7 +131,11 @@ class AppCI():
|
|||
# Scrap jenkins
|
||||
for cibranch in cibranches:
|
||||
print("> Fetching current CI results for C.I. branch {}".format(cibranch.name))
|
||||
try:
|
||||
result_json = requests.get(cibranch.url).text
|
||||
except:
|
||||
print("Failed to fetch %s" % cibranch.url)
|
||||
continue
|
||||
cleaned_json = [ line for line in result_json.split("\n") if "test_name" in line ]
|
||||
cleaned_json = [ line.replace('"level": ?,', '"level": null,') for line in cleaned_json ]
|
||||
cleaned_json = "[" + ''.join(cleaned_json)[:-1] + "]"
|
||||
|
|
Loading…
Reference in a new issue