-
-
Notifications
You must be signed in to change notification settings - Fork 398
30 lines (27 loc) · 749 Bytes
/
latest-deps.yml
File metadata and controls
30 lines (27 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This workflow simulates a fresh environment where the only install
# command is a user pip installing zarr
name: Latest dependencies
on:
push:
branches: [ support/v2 ]
pull_request:
branches: [ support/v2 ]
jobs:
latest-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3.3.0
with:
auto-update-conda: true
python-version: "3.12"
- name: Tests
shell: bash -el {0}
env:
ZARR_V3_EXPERIMENTAL_API: 1
ZARR_V3_SHARDING: 1
run: |
python -m pip install pytest pytest-cov pytest-timeout msgpack-python
python -m pip install .
pytest -svx --timeout=300