Skip to content

Commit 3834466

Browse files
authored
Drop lz4 from byte-parity sweep, gated as experimental (#2268) (#2269)
1 parent f3cc785 commit 3834466

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

xrspatial/geotiff/tests/test_lowlevel_write_pushdown_2138.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,16 +266,18 @@ def test_write_promotes_bool(self, tmp_path):
266266

267267
# JPEG omitted from the byte-parity sweep on purpose: it requires the
268268
# opt-in, which the wrapper emits a runtime warning for, and JPEG is
269-
# lossy so trivial seed changes can shift bytes. ``_write`` is exercised
270-
# elsewhere; the parity sweep covers the lossless codec set that direct
271-
# callers reach for first.
269+
# lossy so trivial seed changes can shift bytes. The experimental codecs
270+
# (``lerc``, ``jpeg2000`` / ``j2k``, ``lz4``) are gated behind
271+
# ``allow_experimental_codecs=True`` (issue #2137) and are likewise
272+
# excluded from this sweep. ``_write`` is exercised elsewhere; the
273+
# parity sweep covers the stable lossless codec set that direct callers
274+
# reach for first.
272275
_PARITY_CODECS = (
273276
"none",
274277
"deflate",
275278
"lzw",
276279
"packbits",
277280
"zstd",
278-
"lz4",
279281
)
280282

281283

0 commit comments

Comments
 (0)