Because we had a / char in there it was doing something funky. Now we show completed by 1 of 24.

This commit is contained in:
2017-12-16 19:42:06 +01:00
parent e01934b61b
commit 2588259fd9

View File

@@ -13,7 +13,6 @@ def get_xml_test_results():
return [failures, total]
def buildURL(subject, value, color):
print('https://img.shields.io/badge/{}-{}-{}.svg'.format(subject, value, color))
return 'https://img.shields.io/badge/{}-{}-{}.svg'.format(subject, value, color)
def getPicture(path):
@@ -24,6 +23,8 @@ def downloadImage(image_url):
session = requests.Session()
session.headers = {"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.109 Safari/537.36"}
localFilename = image_url.split('/')[-1].split("?")[0].split('-')[0].lower() + '.svg'
print(localFilename)
exit(0)
r = session.get(image_url, stream=True, verify=False)
with open(localFilename, 'wb') as f:
@@ -55,7 +56,7 @@ def uploadToDropbox(path):
def main():
failures, total = get_xml_test_results()
progress = "{0:.1f}".format((total-failures)/total * 100)
completed = str(total-failures) + '/' + str(total)
completed = str(total-failures) + '_of_' + str(total)
color = getColor(progress)
image1 = downloadImage(buildURL('Progress', progress + '%25', color))