Skip to content

Commit

Permalink
array tests: handle different hexdigests from zlib-ng (#1678)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
AdamWill committed Sep 6, 2024
1 parent 88b2100 commit af7d892
Show file tree
Hide file tree
Showing 2 changed files with 275 additions and 185 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
matrix:
python-version: ['3.10', '3.11', '3.12']
numpy_version: ['>=2.1', '==1.24.*']
zlib: ['', 'zlib-ng']
exclude:
- python-version: '3.12'
numpy_version: '==1.24.*'
Expand Down Expand Up @@ -50,7 +51,7 @@ jobs:
- name: Create Conda environment with the rights deps
shell: "bash -l {0}"
run: |
conda create -n zarr-env python==${{matrix.python-version}} bsddb3 pip nodejs
conda create -n zarr-env python==${{matrix.python-version}} bsddb3 pip nodejs ${{matrix.zlib}}
conda activate zarr-env
npm install -g azurite
- name: Install dependencies
Expand Down
Loading

0 comments on commit af7d892

Please sign in to comment.