@@ -97,11 +97,11 @@ def on_task_failure(self, task):
9797 timings = task .pipeline_timings (['compile_complete' ,
9898 'run_complete' ,
9999 'total' ])
100- mssg = f'{ task .check .info ()} [{ timings } ]'
100+ msg = f'{ task .check .info ()} [{ timings } ]'
101101 if task .failed_stage == 'cleanup' :
102- self .printer .status ('ERROR' , mssg , just = 'right' )
102+ self .printer .status ('ERROR' , msg , just = 'right' )
103103 else :
104- self .printer .status ('FAIL' , mssg , just = 'right' )
104+ self .printer .status ('FAIL' , msg , just = 'right' )
105105
106106 timings = task .pipeline_timings (['setup' ,
107107 'compile_complete' ,
@@ -115,8 +115,8 @@ def on_task_success(self, task):
115115 timings = task .pipeline_timings (['compile_complete' ,
116116 'run_complete' ,
117117 'total' ])
118- mssg = f'{ task .check .info ()} [{ timings } ]'
119- self .printer .status ('OK' , mssg , just = 'right' )
118+ msg = f'{ task .check .info ()} [{ timings } ]'
119+ self .printer .status ('OK' , msg , just = 'right' )
120120 timings = task .pipeline_timings (['setup' ,
121121 'compile_complete' ,
122122 'run_complete' ,
@@ -230,12 +230,12 @@ def on_task_failure(self, task):
230230 timings = task .pipeline_timings (['compile_complete' ,
231231 'run_complete' ,
232232 'total' ])
233- mssg = f'{ task .check .info ()} [{ timings } ]'
233+ msg = f'{ task .check .info ()} [{ timings } ]'
234234 if task .failed_stage == 'cleanup' :
235- self .printer .status ('ERROR' , mssg , just = 'right' )
235+ self .printer .status ('ERROR' , msg , just = 'right' )
236236 else :
237237 self ._remove_from_running (task )
238- self .printer .status ('FAIL' , mssg , just = 'right' )
238+ self .printer .status ('FAIL' , msg , just = 'right' )
239239
240240 timings = task .pipeline_timings (['setup' ,
241241 'compile_complete' ,
@@ -249,8 +249,8 @@ def on_task_success(self, task):
249249 timings = task .pipeline_timings (['compile_complete' ,
250250 'run_complete' ,
251251 'total' ])
252- mssg = f'{ task .check .info ()} [{ timings } ]'
253- self .printer .status ('OK' , mssg , just = 'right' )
252+ msg = f'{ task .check .info ()} [{ timings } ]'
253+ self .printer .status ('OK' , msg , just = 'right' )
254254 timings = task .pipeline_timings (['setup' ,
255255 'compile_complete' ,
256256 'run_complete' ,
0 commit comments