Skip to content

Commit 0b11058

Browse files
Moving test_subscr_fn to after parse_tv_app in test_launchUrl_fn and commenting out timeout param in yaml file.
1 parent 7a3df23 commit 0b11058

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/examples-linux-tv-casting-app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: |
6868
./scripts/run_in_build_env.sh \
6969
"python3 ./scripts/tests/run_tv_casting_test.py"
70-
timeout-minutes: 5
70+
# timeout-minutes: 5
7171

7272
- name: Uploading Size Reports
7373
uses: ./.github/actions/upload-size-reports

scripts/tests/run_tv_casting_test.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -535,11 +535,13 @@ def test_subscription_fn(tv_casting_app_info: Tuple[subprocess.Popen, TextIO], l
535535
def test_launchUrl_fn(tv_casting_app_info: Tuple[subprocess.Popen, TextIO], tv_app_info: Tuple[subprocess.Popen, TextIO], log_paths: List[str]):
536536
"""Test that the Linux tv-casting-app sent the launchUrl and that the Linux tv-app received the launchUrl."""
537537

538-
test_subscription_fn(tv_casting_app_info, log_paths) # SHAO added
538+
539539

540540
if not parse_tv_app_output_for_launchUrl_msg_success(tv_app_info, log_paths):
541541
handle_casting_failure('Testing launchUrl', log_paths)
542542

543+
test_subscription_fn(tv_casting_app_info, log_paths) # SHAO added
544+
543545
if not parse_tv_casting_app_output_for_launchUrl_msg_success(tv_casting_app_info, log_paths):
544546
handle_casting_failure('Testing launchUrl', log_paths)
545547

0 commit comments

Comments
 (0)