Skip to content

Commit 851d47c

Browse files
fix: add san report filter (#26936)
1 parent 41cf775 commit 851d47c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/tests/olap/lib/allure_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def _produce_sanitizer_report(node_errors: list[NodeErrors]) -> str:
110110

111111
for node_error in node_errors:
112112
host = node_error.node.host
113-
if host not in reported_hosts:
113+
if host not in reported_hosts and node_error.sanitizer_output is not None:
114114
html += f'<details style="margin-bottom: 15px"><summary style="display: list-item">Sanitizer output at {host}</summary>'
115115
html += f'<code>{node_error.sanitizer_output.replace('\n', '<br/>')}</code></details>'
116116
reported_hosts.add(host)

0 commit comments

Comments
 (0)