(self)
| 126 | return len(self.tests) |
| 127 | |
| 128 | def iter_tests(self) -> Iterator[TestName]: |
| 129 | if self.forever: |
| 130 | while True: |
| 131 | yield from self.tests |
| 132 | else: |
| 133 | yield from self.tests |
| 134 | |
| 135 | def json_file_use_stdout(self) -> bool: |
| 136 | # Use STDOUT in two cases: |
no outgoing calls
no test coverage detected