Skip to content

[pre-commit.ci] pre-commit autoupdate #801

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #801

Workflow file for this run

# Inspired by xarray
name: Test
on:
pull_request:
branches:
- "*"
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: ${{ matrix.os }} py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.9", "3.12"]
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: numbagg-tests
cache-environment: true
cache-environment-key: "${{matrix.os}}-${{matrix.python-version}}"
create-args: >-
python=${{matrix.python-version}} numba pandas bottleneck pytest pytest-benchmark hypothesis tabulate pyarrow
- name: Install numbagg
run: |
python -m pip install -e .[dev]
- name: Run tests
run: |
python -m pytest --durations=20 -W error
benchmark:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: numbagg-tests
cache-environment: true
cache-environment-key: "${{matrix.os}}-${{matrix.python-version}}"
create-args: >-
python=${{matrix.python-version}} numba pandas bottleneck pytest pytest-benchmark hypothesis tabulate pyarrow
- name: Install numbagg
run: |
python -m pip install -e .[dev]
- name: Run benchmarks
run: |
micromamba run -n numbagg-tests python numbagg/test/run_benchmarks.py
mypy:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: numbagg-tests
cache-environment: true
cache-environment-key: "${{matrix.os}}-${{matrix.python-version}}"
create-args: >-
python=${{matrix.python-version}} numba pandas bottleneck pytest pytest-benchmark hypothesis tabulate pyarrow
- name: Install numbagg
run: |
python -m pip install -e .[dev]
- name: Mypy
run: |
mypy