From 9683bdc48179f82a095350d25accdc87797dd218 Mon Sep 17 00:00:00 2001 From: Pavel Efarinov Date: Wed, 15 Oct 2025 21:16:48 +0300 Subject: [PATCH] fix: add san report filter --- ydb/tests/olap/lib/allure_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/tests/olap/lib/allure_utils.py b/ydb/tests/olap/lib/allure_utils.py index bf465c083a14..ab1f714ad87a 100644 --- a/ydb/tests/olap/lib/allure_utils.py +++ b/ydb/tests/olap/lib/allure_utils.py @@ -110,7 +110,7 @@ def _produce_sanitizer_report(node_errors: list[NodeErrors]) -> str: for node_error in node_errors: host = node_error.node.host - if host not in reported_hosts: + if host not in reported_hosts and node_error.sanitizer_output is not None: html += f'
Sanitizer output at {host}' html += f'{node_error.sanitizer_output.replace('\n', '
')}
' reported_hosts.add(host)