Update prtester.py

This commit is contained in:
Bocki 2024-10-14 10:28:33 +02:00 committed by GitHub
parent 9b803877f0
commit 4383e66234
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
.github/prtester.py vendored
View File

@ -141,7 +141,7 @@ 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):
filename = {instance.name} + '_' + {form_number} + '.html' filename = f'{os.getcwd()}/{instance.name}_{form_number}.html'
with open(file=filename, mode='w+', encoding='utf-8') as file: with open(file=filename, mode='w+', encoding='utf-8') as file:
file.write(page_text) file.write(page_text)
table_rows.append(f'| {bridge_name} | [{form_number} {context_name}{instance_suffix}]({tester_url}) | {status} |') table_rows.append(f'| {bridge_name} | [{form_number} {context_name}{instance_suffix}]({tester_url}) | {status} |')