Skip to content

tests

tests #150

Workflow file for this run

name: tests
on:
push:
branches: master
pull_request:
workflow_dispatch:
schedule:
- cron: '42 0 * * 0'
jobs:
run_tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.10", "3.11"]
add_package: [""]
continue-on-error: [false]
include:
- os: macos-latest
python: "3.11"
continue-on-error: false
- os: windows-latest
python: "3.11"
continue-on-error: false
- os: ubuntu-latest
python: "3.11"
add_package: features
continue-on-error: true
- os: macos-latest
python: "3.11"
add_package: features
continue-on-error: true
- os: windows-latest
python: "3.11"
add_package: features
continue-on-error: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.continue-on-error }}
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python }}
environment-file: .github/test_conda_env.yml
- name: install multitaper
if: ${{ matrix.add_package == 'features' }}
continue-on-error: ${{ matrix.continue-on-error }}
run: |
conda install multitaper
- name: install other optional dependencies
if: ${{ matrix.add_package == 'features' }}
continue-on-error: ${{ matrix.continue-on-error }}
run: |
conda install h5py fortran-compiler
pip install obspyh5 toeplitz
- name: print conda environment info
run: |
conda info -a
conda list
- name: install package
run: |
pip install -v --no-deps .
conda list
- name: run test suite
run: |
mkdir empty; cd empty
coverage run --include='*/rf/*' -m rf.tests
coverage xml -o ../coverage.xml
- name: upload coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
fail_ci_if_error: true