(self, runtests: RunTests)
| 64 | self.log(f"[{line}] {text}") |
| 65 | |
| 66 | def set_tests(self, runtests: RunTests) -> None: |
| 67 | if runtests.forever: |
| 68 | self.test_count_text = '' |
| 69 | self.test_count_width = 3 |
| 70 | else: |
| 71 | self.test_count_text = '/{}'.format(len(runtests.tests)) |
| 72 | self.test_count_width = len(self.test_count_text) - 1 |
| 73 | |
| 74 | def start_load_tracker(self) -> None: |
| 75 | if not MS_WINDOWS: |
no test coverage detected