File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,8 @@ def _attach_plans(plan: YdbCliHelper.QueryPlan) -> None:
223
223
if os .getenv ('NO_KUBER_LOGS' ) is None and not success :
224
224
cls ._attach_logs (start_time = result .start_time , attach_name = 'kikimr' )
225
225
if upload :
226
+ stats ['with_warrnings' ] = bool (result .warning_message )
227
+ stats ['with_errors' ] = bool (error_message )
226
228
ResultsProcessor .upload_results (
227
229
kind = 'Load' ,
228
230
suite = cls .suite (),
@@ -260,7 +262,8 @@ def setup_class(cls) -> None:
260
262
suite = cls .suite (),
261
263
test = '_Verification' ,
262
264
timestamp = start_time ,
263
- is_successful = (error is None )
265
+ is_successful = (error is None ),
266
+ statistics = {'with_errors' : bool (error ), 'with_warrnings' : False }
264
267
)
265
268
if os .getenv ('NO_KUBER_LOGS' ) is None and error is not None :
266
269
cls ._attach_logs (start_time = max (start_time - 600 , first_node_start_time ), attach_name = 'kikimr_start' )
You can’t perform that action at this time.
0 commit comments