File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 42
42
- name : Checkout
43
43
uses : actions/checkout@v4
44
44
45
- - name : Setup Environment
46
- # coreutils for stdbuf
47
- run : brew install coreutils
48
-
49
45
- name : Checkout submodules & Bootstrap
50
46
uses : ./.github/actions/checkout-submodules-and-bootstrap
51
47
with :
71
67
run : |
72
68
./scripts/run_in_build_env.sh \
73
69
"python3 ./scripts/tests/run_tv_casting_test.py"
74
- timeout-minutes : 2
70
+ timeout-minutes : 1
75
71
76
72
- name : Uploading Size Reports
77
73
uses : ./.github/actions/upload-size-reports
Original file line number Diff line number Diff line change @@ -338,7 +338,8 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
338
338
if time .time () - start_wait_time > VERIFY_SUBSCRIPTION_STATE_MAX_WAIT_SEC :
339
339
logging .error (
340
340
'The relevant `ReportDataMessage` block was not found in the Linux tv-casting-app process within the timeout.' )
341
- report_data_message .clear ()
341
+ # report_data_message.clear() # SHAO OG
342
+ report_data_message = [] # SHAO
342
343
return report_data_message
343
344
344
345
tv_casting_line = tv_casting_app_process .stdout .readline ()
@@ -356,13 +357,15 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
356
357
if 'Cluster =' in tv_casting_line :
357
358
cluster_value = extract_value_from_string (tv_casting_line )
358
359
if cluster_value != CLUSTER_MEDIA_PLAYBACK :
359
- report_data_message .clear ()
360
+ # report_data_message.clear() # SHAO OG
361
+ report_data_message = [] # SHAO
360
362
continue_parsing = False
361
363
362
364
elif 'Attribute =' in tv_casting_line :
363
365
attribute_value = extract_value_from_string (tv_casting_line )
364
366
if attribute_value != ATTRIBUTE_CURRENT_PLAYBACK_STATE :
365
- report_data_message .clear ()
367
+ # report_data_message.clear() # SHAO OG
368
+ report_data_message = [] # SHAO
366
369
continue_parsing = False
367
370
368
371
elif 'InteractionModelRevision' in tv_casting_line :
You can’t perform that action at this time.
0 commit comments