(self, timeout: float | None = None)
| 237 | self.ex = sys.exc_info() # pragma: no cover |
| 238 | |
| 239 | def join(self, timeout: float | None = None) -> None: |
| 240 | super().join(timeout=timeout) |
| 241 | if self.ex is not None: |
| 242 | raise RuntimeError from self.ex[1] # pragma: no cover |
| 243 | |
| 244 | |
| 245 | @pytest.mark.parametrize("lock_type", [FileLock, SoftFileLock]) |
no outgoing calls
no test coverage detected