1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-10 23:40:58 +00:00

fix(tests): avoid race condition when generating UI test screenshots

This commit is contained in:
matejcik 2021-04-09 11:41:50 +02:00 committed by matejcik
parent b1e4246b46
commit c233b796df

View File

@ -99,12 +99,17 @@ def screen_recording(client, request):
try:
client.debug.start_recording(str(screen_path))
yield
finally:
# Wait for response to Initialize, which gives the emulator time to catch up
# and redraw the homescreen. Otherwise there's a race condition between that
# and stopping recording.
client.init_device()
client.debug.stop_recording()
if test_ui == "record":
_process_recorded(screen_path, test_name)
else:
_process_tested(screens_test_path, test_name)
finally:
client.debug.stop_recording()
def list_missing():