Skip to content

Commit 81dab45

Browse files
committed
Remove old test
1 parent ac21d1c commit 81dab45

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

tests/integration/test_segy_import_export.py

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -265,29 +265,6 @@ def test_3d_import(segy_input, zarr_tmp, index_bytes, index_names):
265265
overwrite=True,
266266
)
267267

268-
269-
@pytest.mark.dependency
270-
def test_live_mask_chunksize(segy_input, zarr_tmp):
271-
"""Test that the live_mask_chunksize parameter is handled correctly by segy_to_mdio."""
272-
segy_to_mdio(
273-
segy_path=segy_input.__str__(),
274-
mdio_path_or_buffer=zarr_tmp.__str__(),
275-
index_bytes=(17, 13),
276-
index_names=("inline", "crossline"),
277-
chunksize=(512, 512, 512), # For a 3D dataset: inline, crossline, sample
278-
overwrite=True,
279-
live_mask_chunksize=(8, 8), # Explicit live_mask chunksize to test
280-
)
281-
282-
import zarr
283-
284-
# Open the MDIO store as a Zarr group.
285-
zarr_group = zarr.open_group(zarr_tmp.__str__(), mode="r")
286-
live_mask_ds = zarr_group["metadata"]["live_mask"]
287-
# Assert that the live_mask dataset has chunks equal to (8, 8)
288-
assert live_mask_ds.chunks == (8, 8)
289-
290-
291268
@pytest.mark.dependency("test_3d_import")
292269
class TestReader:
293270
"""Test reader functionality."""

0 commit comments

Comments
 (0)