eric6/DataViews/PyCoverageDialog.py

changeset 8217
385f60c94548
parent 8207
d359172d11be
child 8218
7c09585bd960
equal deleted inserted replaced
8216:6a042a54e0f7 8217:385f60c94548
209 else: 209 else:
210 pc = 100.0 210 pc = 100.0
211 self.__createResultItem( 211 self.__createResultItem(
212 file, str(n), str(m), pc, readableEx, readable) 212 file, str(n), str(m), pc, readableEx, readable)
213 213
214 total_statements = total_statements + n 214 total_statements += n
215 total_executed = total_executed + m 215 total_executed += m
216 except CoverageException: 216 except CoverageException:
217 total_exceptions += 1 217 total_exceptions += 1
218 218
219 self.checkProgress.setValue(progress) 219 self.checkProgress.setValue(progress)
220 QApplication.processEvents() 220 QApplication.processEvents()

eric ide

mercurial