Woopsies, forgot to remove debug stuff

This commit is contained in:
Alexandre Aubin 2021-03-21 22:10:52 +01:00
parent a29211ef08
commit 47dee6a0af
2 changed files with 0 additions and 4 deletions

View file

@ -141,9 +141,6 @@ class Github():
self.user = GITHUB_USER
self.token = GITHUB_TOKEN
print(self.user)
print(self.token)
def request(self, uri, autoretry=True):
r = requests.get('https://api.github.com/{}'.format(uri), auth=(self.user, self.token)).json()

View file

@ -174,7 +174,6 @@ class AppCI():
print("Failed to fetch %s" % cibranch.url)
continue
import pdb; pdb.set_trace()
for app, test_summary in results.items():
if (test_summary["architecture"], test_summary["yunohost_branch"]) != (cibranch.arch, cibranch.branch):