Heuristics for auto-guessing "method"
#2663
Workflow file for this run
This file contains 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
name: CI | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
- cron: "0 0 * * *" # Daily “At 00:00” | |
workflow_dispatch: # allows you to trigger manually | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "windows-latest"] | |
python-version: ["3.9", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for all branches and tags. | |
- name: Set environment variables | |
run: | | |
echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV | |
- name: Set up conda environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: ci/environment.yml | |
environment-name: flox-tests | |
init-shell: bash | |
cache-environment: true | |
create-args: | | |
python=${{ matrix.python-version }} | |
- name: Install flox | |
run: | | |
python -m pip install --no-deps -e . | |
- name: Run Tests | |
run: | | |
pytest -n auto --cov=./ --cov-report=xml | |
- name: Upload code coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: RUNNER_OS,PYTHON_VERSION | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
optional-deps: | |
name: ${{ matrix.env }} | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11"] | |
env: ["no-xarray", "no-dask"] | |
include: | |
- env: "no-numba" | |
python-version: "3.12" | |
- env: "minimal-requirements" | |
python-version: "3.9" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for all branches and tags. | |
- name: Set up conda environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: ci/${{ matrix.env }}.yml | |
environment-name: flox-tests | |
init-shell: bash | |
cache-environment: true | |
create-args: | | |
python=${{ matrix.python-version }} | |
- name: Install flox | |
run: | | |
python -m pip install --no-deps -e . | |
- name: Run tests | |
run: | | |
python -m pytest -n auto --cov=./ --cov-report=xml | |
- name: Upload code coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: RUNNER_OS | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
xarray-groupby: | |
name: xarray-groupby | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: "pydata/xarray" | |
fetch-depth: 0 # Fetch all history for all branches and tags. | |
- name: Set up conda environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: ci/requirements/environment.yml | |
environment-name: xarray-tests | |
init-shell: bash | |
cache-environment: true | |
create-args: >- | |
python=3.11 | |
pint>=0.22 | |
- name: Install xarray | |
run: | | |
python -m pip install --no-deps . | |
- name: Install upstream flox | |
run: | | |
python -m pip install --no-deps \ | |
git+https://github.com/dcherian/flox.git@${{ github.ref }} | |
- name: Version info | |
run: | | |
conda info -a | |
conda list | |
python xarray/util/print_versions.py | |
- name: import xarray | |
run: | | |
python -c 'import xarray' | |
- name: import flox | |
run: | | |
python -c 'import flox' | |
- name: Run Tests | |
if: success() | |
id: status | |
run: | | |
set -euo pipefail | |
python -m pytest -n auto \ | |
xarray/tests/test_groupby.py \ | |
xarray/tests/test_units.py::TestDataArray::test_computation_objects \ | |
xarray/tests/test_units.py::TestDataArray::test_grouped_operations \ | |
xarray/tests/test_units.py::TestDataArray::test_resample \ | |
xarray/tests/test_units.py::TestDataset::test_computation_objects \ | |
xarray/tests/test_units.py::TestDataset::test_grouped_operations \ | |
xarray/tests/test_units.py::TestDataset::test_resample |