Skip to content

Update zarr requirement from <3.0.0a,>=2.12.0 to >=2.12.0,<4.0.0 in the pip-dependencies group #1365

Update zarr requirement from <3.0.0a,>=2.12.0 to >=2.12.0,<4.0.0 in the pip-dependencies group

Update zarr requirement from <3.0.0a,>=2.12.0 to >=2.12.0,<4.0.0 in the pip-dependencies group #1365

Workflow file for this run

name: Unit test minimum dependencies
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
# When this workflow is queued, automatically cancel any previous running
# or pending jobs from the same branch
concurrency:
group: test-mindeps-${{ github.ref }}
cancel-in-progress: true
jobs:
test-mindeps:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout source
uses: actions/checkout@v4.1.1
- name: Install uv
uses: astral-sh/setup-uv@v3.2.2
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install minimum-compatible dependencies
run: uv sync --resolution lowest-direct --extra test
- name: Test
run: uv run pytest tests/unit --verbose --cov=earthaccess --cov=tests --cov-report=term-missing --capture=no --tb=native --log-cli-level=INFO
- name: Upload coverage
# Don't upload coverage when using the `act` tool to run the workflow locally
if: ${{ !env.ACT }}
uses: codecov/codecov-action@v4