Skip to content

Commit 34d4129

Browse files
committed
[NO CP] Temporary dumping of test exec log to stderr
- This is done as per QA request, needs to be reverted and not required to be cherry-picked into later releases.
1 parent 434ee5d commit 34d4129

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/run_test.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -946,6 +946,11 @@ def handle_log_file(
946946
if re.search("Running .* items in this shard:", line):
947947
print_to_stderr(line.rstrip())
948948
print_to_stderr("")
949+
950+
# Temporary dumping the log file into stderr for QA reference
951+
print_to_stderr(f"\n START of temporary dumping of {test} execution log file from ({file_path})")
952+
print_to_stderr(full_text)
953+
print_to_stderr(f"END of temporary dumping of {test} execution log file form ({file_path})\n")
949954
return
950955

951956
# otherwise: print entire file

0 commit comments

Comments
 (0)