(self, path, **kwargs)
| 40 | class TestNetCDF4DataTree(_TestNetCDF4Data): |
| 41 | @contextlib.contextmanager |
| 42 | def open(self, path, **kwargs): |
| 43 | with open_datatree(path, engine=self.engine, **kwargs) as ds: |
| 44 | yield ds.to_dataset() |
| 45 | |
| 46 | def test_child_group_with_inconsistent_dimensions(self) -> None: |
| 47 | with pytest.raises( |
nothing calls this directly
no test coverage detected