82961f8f206a2343fe65d78407e480a44a40ae6b,gui/mozregui/report.py,ReportModel,step_build_found,#ReportModel#,193
Before Change
if isinstance(last_item, StartItem):
// update the pushlog for the start step
last_item.update_pushlogurl(bisection)
self.update_item(last_item)
// and add the new step with build_infos
item = StepItem()
After Change
if isinstance(last_item, StartItem):
// update the pushlog for the start step
if hasattr(bisection, "handler"):
last_item.update_pushlogurl(bisection)
self.update_item(last_item)
else:
// single runner case
// TODO: rework report.py implementation...
self.finished(None, None) // remove last item
// and add the new step with build_infos
item = StepItem()
item.data.update(build_infos.to_dict())
self.append_item(item)
else:
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances Project Name: mozilla/mozregression
Commit Name: 82961f8f206a2343fe65d78407e480a44a40ae6b
Time: 2015-12-07
Author: j.parkouss@gmail.com
File Name: gui/mozregui/report.py
Class Name: ReportModel
Method Name: step_build_found
Project Name: mozilla/mozregression
Commit Name: e2683578926668fdbeaeb09c12726daa4231a978
Time: 2016-01-19
Author: j.parkouss@gmail.com
File Name: gui/mozregui/report.py
Class Name: ReportModel
Method Name: step_testing
Project Name: mozilla/mozregression
Commit Name: e2683578926668fdbeaeb09c12726daa4231a978
Time: 2016-01-19
Author: j.parkouss@gmail.com
File Name: gui/mozregui/report.py
Class Name: ReportModel
Method Name: step_started