Fix tests for numpy 2.0 #976
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: Run tests | |
on: | |
push: | |
pull_request: | |
schedule: | |
# run every Tuesday at 5am UTC | |
- cron: '0 5 * * 2' | |
jobs: | |
tests: | |
name: ${{ matrix.name}} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
python-version: '3.10' | |
name: Py3.10 mindeps | |
toxenv: py310-test | |
- os: ubuntu-latest | |
python-version: 3.11 | |
name: Py3.11 mindeps | |
toxenv: py311-test | |
- os: ubuntu-latest | |
python-version: 3.12 | |
name: Py3.12 mindeps | |
toxenv: py312-test | |
- os: ubuntu-latest | |
python-version: 3.11 | |
name: Py3.11 no visualization + coverage | |
toxenv: py311-test-noviz-cov | |
- os: ubuntu-latest | |
python-version: 3.8 | |
name: Py3.8 mindeps | |
toxenv: py38-test | |
- os: ubuntu-latest | |
python-version: 3.9 | |
name: Py3.9 noviz | |
toxenv: py39-test-noviz | |
- os: ubuntu-latest | |
python-version: 3.9 | |
name: Py3.9 all | |
toxenv: py39-test-viz-noviz | |
- os: ubuntu-latest | |
python-version: 3.11 | |
name: Py3.11 dev | |
toxenv: py311-test-dev | |
- os: ubuntu-latest | |
python-version: 3.11 | |
name: Py3.11 viz | |
toxenv: py311-test-viz | |
#- os: ubuntu-latest | |
# python-version: 3.9 | |
# name: Py3.9 viz w/yt & glue | |
# toxenv: py39-test-viz-viz_extra | |
- os: ubuntu-latest | |
python-version: 3.11 | |
name: Py3.11 all dev | |
toxenv: py311-test-viz-noviz-dev | |
- os: ubuntu-latest | |
python-version: 3.8 | |
name: Py3.8 mindeps and CASA | |
toxenv: py38-test-casa | |
- os: ubuntu-latest | |
python-version: '3.10' | |
name: Py3.10 mindeps and CASA | |
toxenv: py310-test-casa | |
- os: ubuntu-latest | |
python-version: 3.11 | |
name: Py3.11, noviz, dev | |
toxenv: py311-test-noviz-dev | |
- os: ubuntu-latest | |
python-version: 3.8 | |
name: Py3.8 noviz (except CASA) | |
toxenv: py38-test-noviz | |
- os: macos-latest | |
python-version: 3.11 | |
name: Py3.11 noviz (except CASA) MacOS X | |
toxenv: py39-test-noviz | |
- os: windows-latest | |
python-version: 3.11 | |
name: Py3.11, noviz Windows | |
toxenv: py311-test-noviz-dev | |
- os: windows-latest | |
python-version: 3.11 | |
name: Py3.11, noviz, dev; Windows | |
toxenv: py311-test-noviz-dev | |
- os: ubuntu-latest | |
python-version: 3.11 | |
name: Documentation | |
toxenv: build_docs | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install testing dependencies | |
run: python -m pip install tox codecov | |
- name: Run tests with ${{ matrix.name }} (optionally with CASA) | |
if: ${{ !contains(matrix.toxenv,'-casa') }} | |
run: tox -v -e ${{ matrix.toxenv }} | |
- name: Run tests with ${{ matrix.name }} (no CASA) | |
if: ${{ contains(matrix.toxenv,'-casa') }} | |
run: | | |
mkdir ${GITHUB_WORKSPACE}/.casa | |
mkdir ${GITHUB_WORKSPACE}/.casa/data | |
chmod 777 -R ${GITHUB_WORKSPACE}/.casa | |
echo "datapath=['${GITHUB_WORKSPACE}/.casa/']; measurespath=datapath[0]; measures_auto_update=True; data_auto_update=True" > $GITHUB_WORKSPACE/config.py | |
pip install casadata | |
CASASITECONFIG=$GITHUB_WORKSPACE/config.py tox -v -e ${{ matrix.toxenv }} | |
- name: Upload coverage to codecov | |
if: ${{ contains(matrix.toxenv,'-cov') }} | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.xml |