Update prtester.py

This commit is contained in:
Bocki 2024-10-14 10:13:06 +02:00 committed by GitHub
parent af26d845d9
commit b6bfbaf3b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

11
.github/prtester.py vendored
View File

@ -39,6 +39,7 @@ def main(instances: Iterable[Instance], with_upload: bool, with_reduced_upload:
def testBridges(instance: Instance, bridge_cards: Iterable, with_upload: bool, with_reduced_upload: bool) -> Iterable: def testBridges(instance: Instance, bridge_cards: Iterable, with_upload: bool, with_reduced_upload: bool) -> Iterable:
instance_suffix = '' instance_suffix = ''
tester_url = 'https://bockiii.github.io/prs/'
if instance.name: if instance.name:
instance_suffix = f' ({instance.name})' instance_suffix = f' ({instance.name})'
table_rows = [] table_rows = []
@ -140,10 +141,10 @@ def testBridges(instance: Instance, bridge_cards: Iterable, with_upload: bool, w
if status_is_ok: if status_is_ok:
status = '✔️' status = '✔️'
if with_upload and (not with_reduced_upload or not status_is_ok): if with_upload and (not with_reduced_upload or not status_is_ok):
termpad = requests.post(url="https://termpad.com/", data=page_text) filename = os.getcwd() + '/' + {instance.name} + '_' + {form_number} + '.html'
termpad_url = termpad.text.strip() with open(file=filename, mode='w+', encoding='utf-8') as file:
termpad_url = termpad_url.replace('termpad.com/','termpad.com/raw/') file.write(page_text)
table_rows.append(f'| {bridge_name} | [{form_number} {context_name}{instance_suffix}]({termpad_url}) | {status} |') table_rows.append(f'| {bridge_name} | [{form_number} {context_name}{instance_suffix}]({tester_url}) | {status} |')
form_number += 1 form_number += 1
return table_rows return table_rows
@ -187,4 +188,4 @@ if __name__ == '__main__':
with_reduced_upload=args.reduced_upload and not args.no_upload, with_reduced_upload=args.reduced_upload and not args.no_upload,
title=args.title, title=args.title,
output_file=args.output_file output_file=args.output_file
); );