Skip to content

Commit a8ee708

Browse files
authored
Merge pull request #687 from Carreau/az-gh
Try to install azurite on Windows + GitHub Actions.
2 parents d4c363d + 5432b80 commit a8ee708

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/windows-testing.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Create Conda environment with the rights deps
3232
shell: bash -l {0}
3333
run: |
34-
conda create -n zarr-env python==${{matrix.python-version}} numcodecs==0.6.4 pip
34+
conda create -n zarr-env python==${{matrix.python-version}} numcodecs==0.6.4 pip nodejs
3535
- name: Install dependencies
3636
shell: bash -l {0}
3737
run: |
@@ -41,11 +41,16 @@ jobs:
4141
python -m pip install -r requirements_dev_numpy.txt -r requirements_dev_minimal.txt -r requirements_dev_optional.txt
4242
python -m pip install -e .
4343
python -m pip freeze
44+
npm install -g azurite
4445
- name: Run Tests
4546
shell: bash -l {0}
4647
run: |
4748
conda activate zarr-env
49+
mkdir ~/blob_emulator
50+
azurite -l ~/blob_emulator --debug debug.log 2>&1 > stdouterr.log &
4851
pytest
52+
env:
53+
ZARR_TEST_ABS: 1
4954
- name: Conda info
5055
shell: bash -l {0}
5156
run: conda info

0 commit comments

Comments
 (0)