(self, **override)
| 108 | return RunTests(**state) |
| 109 | |
| 110 | def create_worker_runtests(self, **override) -> WorkerRunTests: |
| 111 | state = dataclasses.asdict(self) |
| 112 | state.update(override) |
| 113 | return WorkerRunTests(**state) |
| 114 | |
| 115 | def get_match_tests(self, test_name: TestName) -> FilterTuple | None: |
| 116 | if self.match_tests_dict is not None: |
nothing calls this directly
no test coverage detected