From 6f3e6a09104a450d61c816f610ce6b1a74e076b6 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 19 Dec 2017 18:19:29 +0100 Subject: [PATCH] Forgot to remove some tmp stuff :/ --- app/models.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/models.py b/app/models.py index f484111..88f0cf3 100644 --- a/app/models.py +++ b/app/models.py @@ -197,16 +197,13 @@ class AppCI(): # Updating applists... for applist in applists: - pass - #applist.update() + applist.update() apps = App.query.all() cibranches = AppCIBranch.query.all() # Scrap jenkins for branch in cibranches: - if branch.name != "stretch": - continue for app in apps: print("> Fetching {} for C.I. branch {}".format(app.name, branch.name)) url, raw_ci_output = AppCI.fetch_raw_ci_output(branch, app)