Skip to content

Commit 21a0333

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 eaf5d7a commit 21a0333

File tree

2 files changed

+279
-185
lines changed

2 files changed

+279
-185
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@ jobs:
1717
matrix:
1818
python-version: ['3.10', '3.11', '3.12']
1919
numpy_version: ['>=2.1', '==1.24.*']
20+
condadeps: 'bsddb3 pip nodejs'
2021
exclude:
2122
- python-version: '3.12'
2223
numpy_version: '==1.24.*'
24+
include:
25+
- python-version: '3.12'
26+
numpy_version: '>=2.1'
27+
condadeps: 'bsddb3 pip nodejs zlib-ng'
2328
services:
2429
redis:
2530
image: redis
@@ -50,7 +55,7 @@ jobs:
5055
- name: Create Conda environment with the rights deps
5156
shell: "bash -l {0}"
5257
run: |
53-
conda create -n zarr-env python==${{matrix.python-version}} bsddb3 pip nodejs
58+
conda create -n zarr-env python==${{matrix.python-version}} ${{matrix.condadeps}}
5459
conda activate zarr-env
5560
npm install -g azurite
5661
- name: Install dependencies

0 commit comments

Comments
 (0)