mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
Woopsies, forgot to remove debug stuff
This commit is contained in:
parent
a29211ef08
commit
47dee6a0af
2 changed files with 0 additions and 4 deletions
|
@ -141,9 +141,6 @@ class Github():
|
||||||
self.user = GITHUB_USER
|
self.user = GITHUB_USER
|
||||||
self.token = GITHUB_TOKEN
|
self.token = GITHUB_TOKEN
|
||||||
|
|
||||||
print(self.user)
|
|
||||||
print(self.token)
|
|
||||||
|
|
||||||
def request(self, uri, autoretry=True):
|
def request(self, uri, autoretry=True):
|
||||||
|
|
||||||
r = requests.get('https://api.github.com/{}'.format(uri), auth=(self.user, self.token)).json()
|
r = requests.get('https://api.github.com/{}'.format(uri), auth=(self.user, self.token)).json()
|
||||||
|
|
|
@ -174,7 +174,6 @@ class AppCI():
|
||||||
print("Failed to fetch %s" % cibranch.url)
|
print("Failed to fetch %s" % cibranch.url)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
import pdb; pdb.set_trace()
|
|
||||||
for app, test_summary in results.items():
|
for app, test_summary in results.items():
|
||||||
|
|
||||||
if (test_summary["architecture"], test_summary["yunohost_branch"]) != (cibranch.arch, cibranch.branch):
|
if (test_summary["architecture"], test_summary["yunohost_branch"]) != (cibranch.arch, cibranch.branch):
|
||||||
|
|
Loading…
Reference in a new issue