Skip to content

Commit 3acda5a

Browse files
committed
Speedup win testing on Appveyor.
Appveyor is one of the slowest CI, here we enable fast-fail to make sure if one of the matrix element fail we cancel the others.
1 parent 708bbef commit 3acda5a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
conda activate zarr-env
3939
python -m pip install --upgrade pip
4040
python -m pip install -U pip setuptools wheel
41-
python -m pip install -rrequirements_dev_minimal.txt numpy${{ matrix.numpy_version}} -rrequirements_dev_optional.txt
41+
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
4444
- name: Run Tests

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ environment:
1717
ZARR_TEST_ABS: 1
1818

1919
matrix:
20-
2120
- PYTHON: "C:\\Python36-x64"
2221
PYTHON_VERSION: "3.6"
2322

@@ -45,3 +44,6 @@ test_script:
4544

4645
after_test:
4746
- '"%EMULATOR_LOC%" stop'
47+
48+
matrix:
49+
fast_finish: true

0 commit comments

Comments
 (0)