(self)
| 4456 | class TestZarrWriteEmpty(TestZarrDirectoryStore): |
| 4457 | @contextlib.contextmanager |
| 4458 | def temp_dir(self) -> Iterator[tuple[str, str]]: |
| 4459 | with tempfile.TemporaryDirectory() as d: |
| 4460 | store = os.path.join(d, "test.zarr") |
| 4461 | yield d, store |
| 4462 | |
| 4463 | @contextlib.contextmanager |
| 4464 | def roundtrip_dir( |
no test coverage detected