Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions xrspatial/geotiff/tests/test_lowlevel_write_pushdown_2138.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,16 +266,18 @@ def test_write_promotes_bool(self, tmp_path):

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


Expand Down
Loading