Skip to content

Commit a78b487

Browse files
carzhashrit-ms
authored andcommitted
Add more details to BrowserStack script failure (#23520)
### Description Add details about how to access the BrowserStack logs ### Motivation and Context - browserstack link on its own is confusing to people who don't have context. Let me know if you have suggestions to make the text more clear or informative
1 parent 7d448ae commit a78b487

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tools/python/upload_and_run_browserstack_tests.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,10 @@ def build_query_loop(build_id, test_platform, id, token):
169169
print("Test suite details: ", test_suite_details_url)
170170
print("=" * 30)
171171
if tests_status != "passed":
172-
raise Exception(f"Tests failed. Go to {test_suite_details_url} for more details.")
172+
output_str = f"""Tests failed. Go to {test_suite_details_url} for the BrowserStack run.
173+
174+
For more details on how to access the BrowserStack logs, go to the following page in the team OneNote:
175+
ONNX Ecosystem Team Notebook -> ORT Mobile -> End-to-end tests for iOS & Android
176+
"""
177+
178+
raise Exception(output_str)

0 commit comments

Comments
 (0)