Skip to content

Commit 92e23cd

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 f919b4b commit 92e23cd

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
@@ -1355,6 +1355,11 @@ def handle_log_file(
13551355
if re.search("Running .* items in this shard:", line):
13561356
print_to_stderr(line.rstrip())
13571357
print_to_stderr("")
1358+
1359+
# Temporary dumping the log file into stderr for QA reference
1360+
print_to_stderr(f"\n START of temporary dumping of {test} execution log file from ({file_path})")
1361+
print_to_stderr(full_text)
1362+
print_to_stderr(f"END of temporary dumping of {test} execution log file form ({file_path})\n")
13581363
return
13591364

13601365
# otherwise: print entire file

0 commit comments

Comments
 (0)