(self, script)
| 345 | self.time = {} |
| 346 | |
| 347 | def record(self, script): |
| 348 | now = time.time() |
| 349 | self.time[script] = round(now - self.update, 2) |
| 350 | self.update = now |
| 351 | |
| 352 | def report(self): |
| 353 | total = sum(self.time.values()) |
no outgoing calls
no test coverage detected