| Total Complexity | 1 |
| Total Lines | 7 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import time |
||
| 7 | class ProcessingLocalTestBear(LocalBear): # pragma: no cover |
||
| 8 | |||
| 9 | def run(self, filename, file): |
||
| 10 | # we need to test that the SectionExecutor holds back the global |
||
| 11 | # results until processing of all local ones is finished |
||
| 12 | time.sleep(0.05) |
||
| 13 | return [Result("LocalTestBear", "test msg")] |
||
| 14 |