Skip to content

Commit e799e24

Browse files
committed
array tests: handle different hexdigests from zlib-ng (zarr-developers#1678)
As explained in the issue, zlib-ng produces different hex digests from original zlib. This adjusts the tests slightly to allow for this. Signed-off-by: Adam Williamson <[email protected]>
1 parent 88b2100 commit e799e24

File tree

2 files changed

+276
-185
lines changed

2 files changed

+276
-185
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
matrix:
1818
python-version: ['3.10', '3.11', '3.12']
1919
numpy_version: ['>=2.1', '==1.24.*']
20+
zlib: ['', 'zlib-ng']
2021
exclude:
2122
- python-version: '3.12'
2223
numpy_version: '==1.24.*'
@@ -50,7 +51,7 @@ jobs:
5051
- name: Create Conda environment with the rights deps
5152
shell: "bash -l {0}"
5253
run: |
53-
conda create -n zarr-env python==${{matrix.python-version}} bsddb3 pip nodejs
54+
conda create -n zarr-env python==${{matrix.python-version}} bsddb3 pip nodejs ${{matrix.zlib}}
5455
conda activate zarr-env
5556
npm install -g azurite
5657
- name: Install dependencies

0 commit comments

Comments
 (0)