diff --git a/app/models/appcatalog.py b/app/models/appcatalog.py index c04a0e7..5ee4b64 100644 --- a/app/models/appcatalog.py +++ b/app/models/appcatalog.py @@ -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() diff --git a/app/models/appci.py b/app/models/appci.py index a425be1..4d0d98d 100644 --- a/app/models/appci.py +++ b/app/models/appci.py @@ -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):