257 |
257 |
258 This method produce an annotated coverage file of the |
258 This method produce an annotated coverage file of the |
259 selected file. |
259 selected file. |
260 """ |
260 """ |
261 itm = self.resultList.currentItem() |
261 itm = self.resultList.currentItem() |
262 fn = unicode(itm.text(0)) |
262 fn = itm.text(0) |
263 |
263 |
264 cover = coverage(data_file = self.cfn) |
264 cover = coverage(data_file = self.cfn) |
265 cover.use_cache(True) |
265 cover.use_cache(True) |
266 cover.exclude(self.excludeList[0]) |
266 cover.exclude(self.excludeList[0]) |
267 cover.load() |
267 cover.load() |