Skip to content

Commit 97e7403

Browse files
committed
Disable v3 API in CI
1 parent 44be414 commit 97e7403

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/minimal.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
- name: Tests
2424
shell: "bash -l {0}"
2525
env:
26-
ZARR_V3_EXPERIMENTAL_API: 1
27-
ZARR_V3_SHARDING: 1
26+
ZARR_V3_EXPERIMENTAL_API: 0
27+
ZARR_V3_SHARDING: 0
2828
run: |
2929
conda activate minimal
3030
python -m pip install .
3131
pytest -svx --timeout=300
3232
- name: Fixture generation
3333
shell: "bash -l {0}"
3434
env:
35-
ZARR_V3_EXPERIMENTAL_API: 1
36-
ZARR_V3_SHARDING: 1
35+
ZARR_V3_EXPERIMENTAL_API: 0
36+
ZARR_V3_SHARDING: 0
3737
run: |
3838
conda activate minimal
3939
rm -rf fixture/

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ jobs:
7676
ZARR_TEST_ABS: 1
7777
ZARR_TEST_MONGO: 1
7878
ZARR_TEST_REDIS: 1
79-
ZARR_V3_EXPERIMENTAL_API: 1
80-
ZARR_V3_SHARDING: 1
79+
ZARR_V3_EXPERIMENTAL_API: 0
80+
ZARR_V3_SHARDING: 0
8181
run: |
8282
conda activate zarr-env
8383
mkdir ~/blob_emulator

.github/workflows/windows-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
pytest -sv --timeout=300
5151
env:
5252
ZARR_TEST_ABS: 1
53-
ZARR_V3_EXPERIMENTAL_API: 1
54-
ZARR_V3_SHARDING: 1
53+
ZARR_V3_EXPERIMENTAL_API: 0
54+
ZARR_V3_SHARDING: 0
5555
- name: Conda info
5656
shell: bash -l {0}
5757
run: conda info

0 commit comments

Comments
 (0)