Update cube and cutout unittests #357
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 | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- name: Python 3.8 with minimal dependencies | |
os: ubuntu-latest | |
python: 3.8 | |
toxenv: py38-test | |
- name: Python 3.9 with all optional dependencies | |
os: ubuntu-latest | |
python: 3.9 | |
toxenv: py39-test-alldeps | |
toxargs: -v --develop | |
- name: Python 3.10 with numpy 1.23 and full coverage | |
os: ubuntu-latest | |
python: "3.10" | |
toxenv: py310-test-alldeps-numpy123-cov | |
- name: Python 3.10 with all optional dependencies (MacOS X) | |
os: macos-latest | |
python: "3.10" | |
toxenv: py310-test-alldeps | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install language-pack-de and tzdata | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get update | |
sudo apt-get install language-pack-de tzdata | |
- name: Install Python dependencies | |
run: python -m pip install --upgrade tox codecov | |
- name: Run tests | |
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} | |
- name: Upload coverage to codecov | |
if: ${{ contains(matrix.toxenv,'-cov') }} | |
uses: codecov/codecov-action@v2 | |
with: | |
file: ./coverage.xml | |
allowed_failures: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Code style checks | |
os: ubuntu-latest | |
python: 3.x | |
toxenv: codestyle | |
- name: (Allowed Failure) Python 3.11 with dev version of key dependencies | |
os: ubuntu-latest | |
python: 3.11 | |
toxenv: py311-test-devdeps | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install language-pack-de and tzdata | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get update | |
sudo apt-get install language-pack-de tzdata | |
- name: Install Python dependencies | |
run: python -m pip install --upgrade tox codecov | |
- name: Run tests | |
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} |