Bump the requirements group with 2 updates #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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@v4 | |
- name: Setup Miniconda | |
uses: conda-incubator/[email protected] | |
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 |